Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Dec 2017 23:16:42 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r326885 - head/tools/boot
Message-ID:  <201712152316.vBFNGgSO041208@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Dec 15 23:16:42 2017
New Revision: 326885
URL: https://svnweb.freebsd.org/changeset/base/326885

Log:
  Use -h -D in preference to -D so that the serial port gets the
  interactive console rather than the video port. qemu has issues with X
  on my mac at the moment and this is the easiest path forward.
  
  Sponsored by: Netflix

Modified:
  head/tools/boot/rootgen.sh

Modified: head/tools/boot/rootgen.sh
==============================================================================
--- head/tools/boot/rootgen.sh	Fri Dec 15 23:16:37 2017	(r326884)
+++ head/tools/boot/rootgen.sh	Fri Dec 15 23:16:42 2017	(r326885)
@@ -183,7 +183,7 @@ rm -rf ${DESTDIR}
 mkdir -p ${DESTDIR}/boot/defaults
 mkdir -p ${DESTDIR}/boot/kernel
 cp /boot/kernel/kernel ${DESTDIR}/boot/kernel
-echo -D -S115200 > ${DESTDIR}/boot.config
+echo -h -D -S115200 > ${DESTDIR}/boot.config
 # XXX
 cp /boot/device.hints ${DESTDIR}/boot/device.hints
 # Assume we're already built



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712152316.vBFNGgSO041208>