svn commit: r326885 - head/tools/boot

Warner Losh imp at FreeBSD.org
Fri Dec 15 23:16:43 UTC 2017


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


More information about the svn-src-head mailing list