svn commit: r388894 - in head/sysutils/grub2-pcbsd: . files
Kris Moore
kmoore at FreeBSD.org
Tue Jun 9 02:51:45 UTC 2015
Author: kmoore
Date: Tue Jun 9 02:51:44 2015
New Revision: 388894
URL: https://svnweb.freebsd.org/changeset/ports/388894
Log:
- Don't enable dual console/serial mode unless set by user,
fixes an issue with some specific systems on both BIOS and EFI boot
- Bump PORTREV
Modified:
head/sysutils/grub2-pcbsd/Makefile
head/sysutils/grub2-pcbsd/files/10_ktrueos.in
head/sysutils/grub2-pcbsd/files/50_otherbe.in
Modified: head/sysutils/grub2-pcbsd/Makefile
==============================================================================
--- head/sysutils/grub2-pcbsd/Makefile Tue Jun 9 01:35:28 2015 (r388893)
+++ head/sysutils/grub2-pcbsd/Makefile Tue Jun 9 02:51:44 2015 (r388894)
@@ -3,7 +3,7 @@
PORTNAME= grub2-pcbsd
PORTVERSION= 2.02q
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://www.pcbsd.org/~kris/software/ \
ftp://ftp.pcbsd.org/pub/software/
Modified: head/sysutils/grub2-pcbsd/files/10_ktrueos.in
==============================================================================
--- head/sysutils/grub2-pcbsd/files/10_ktrueos.in Tue Jun 9 01:35:28 2015 (r388893)
+++ head/sysutils/grub2-pcbsd/files/10_ktrueos.in Tue Jun 9 02:51:44 2015 (r388894)
@@ -45,13 +45,6 @@ for x in ${GRUB_TERMINAL_OUTPUT}; do
fi
done
-# Set the default output as dual console / serial
-# This is so we can run properly in bhyve and other serial use cases
-# If the user manually sets GRUB_TERMINAL, we will ignore this default
-if [ -z "$GRUB_TERMINAL" ] ; then
- out="-D -h"
-fi
-
if [ "x$serial" = "x1" ]; then
if [ "x$console" = "x1" ]; then
out="-Dh"
Modified: head/sysutils/grub2-pcbsd/files/50_otherbe.in
==============================================================================
--- head/sysutils/grub2-pcbsd/files/50_otherbe.in Tue Jun 9 01:35:28 2015 (r388893)
+++ head/sysutils/grub2-pcbsd/files/50_otherbe.in Tue Jun 9 02:51:44 2015 (r388894)
@@ -45,13 +45,6 @@ for x in ${GRUB_TERMINAL_OUTPUT}; do
fi
done
-# Set the default output as dual console / serial
-# This is so we can run properly in bhyve and other serial use cases
-# If the user manually sets GRUB_TERMINAL, we will ignore this default
-if [ -z "$GRUB_TERMINAL" ] ; then
- out="-D -h"
-fi
-
if [ "x$serial" = "x1" ]; then
if [ "x$console" = "x1" ]; then
out="-Dh"
More information about the svn-ports-all
mailing list