From owner-svn-ports-all@FreeBSD.ORG Tue Jun 9 02:51:45 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CA0FCB4; Tue, 9 Jun 2015 02:51:45 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60C9715F9; Tue, 9 Jun 2015 02:51:45 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t592pj2C067606; Tue, 9 Jun 2015 02:51:45 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t592piQ3067603; Tue, 9 Jun 2015 02:51:44 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201506090251.t592piQ3067603@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Tue, 9 Jun 2015 02:51:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388894 - in head/sysutils/grub2-pcbsd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2015 02:51:45 -0000 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"