svn commit: r212914 - stable/8/sys/boot/forth
John Baldwin
jhb at FreeBSD.org
Mon Sep 20 18:58:24 UTC 2010
Author: jhb
Date: Mon Sep 20 18:58:24 2010
New Revision: 212914
URL: http://svn.freebsd.org/changeset/base/212914
Log:
MFC 212338:
If autoboot_delay is set to -1, boot immediately without checking for
a keypress to match the behavior of the loader.
Modified:
stable/8/sys/boot/forth/beastie.4th
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/boot/forth/beastie.4th
==============================================================================
--- stable/8/sys/boot/forth/beastie.4th Mon Sep 20 18:49:28 2010 (r212913)
+++ stable/8/sys/boot/forth/beastie.4th Mon Sep 20 18:58:24 2010 (r212914)
@@ -240,7 +240,10 @@ set-current
drop
10
else
- 0 0 2swap >number drop drop drop
+ 2dup s" -1" compare 0= if
+ 0 boot
+ then
+ 0 s>d 2swap >number 2drop drop
then
begin
dup tkey
More information about the svn-src-all
mailing list