summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2003-10-27 16:39:49 +0000
committerscottl <scottl@FreeBSD.org>2003-10-27 16:39:49 +0000
commitbf1f504459b39b3f6246848a1fe738b25e808654 (patch)
tree756301e253ed5c9cdc62876e5c609cb4ddc3bdea /sys
parent9a473fa2fc80e66c80bc58683fb874c7991addbb (diff)
downloadFreeBSD-src-bf1f504459b39b3f6246848a1fe738b25e808654.zip
FreeBSD-src-bf1f504459b39b3f6246848a1fe738b25e808654.tar.gz
Directly call the 'boot' word instead of indirectly evaluating it.
Submitted by: dcs
Diffstat (limited to 'sys')
-rw-r--r--sys/boot/forth/beastie.4th14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/boot/forth/beastie.4th b/sys/boot/forth/beastie.4th
index 7fa2043..90aeeec 100644
--- a/sys/boot/forth/beastie.4th
+++ b/sys/boot/forth/beastie.4th
@@ -209,9 +209,9 @@ set-current
dup tkey
0 25 at-xy
dup 32 = if nip 0 swap then
- dup -1 = if s" boot" evaluate then
- dup 13 = if s" boot" evaluate then
- dup bootkey @ = if s" boot" evaluate then
+ dup -1 = if 0 boot then
+ dup 13 = if 0 boot then
+ dup bootkey @ = if 0 boot then
dup bootacpikey @ = if
acpienabled? if
s" acpi_load" unsetenv
@@ -221,7 +221,7 @@ set-current
s" YES" s" acpi_load" setenv
s" 0" s" hint.acpi.0.disabled" setenv
then
- s" boot" evaluate
+ 0 boot
then
dup bootsafekey @ = if
s" arch-i386" environment? if
@@ -233,15 +233,15 @@ set-current
s" 0" s" hw.ata.atapi_dma" setenv
s" 0" s" hw.ata.wc" setenv
s" 0" s" hw.eisa_slots" setenv
- s" boot" evaluate
+ 0 boot
then
dup bootverbosekey @ = if
s" YES" s" boot_verbose" setenv
- s" boot" evaluate
+ 0 boot
then
dup bootsinglekey @ = if
s" YES" s" boot_single" setenv
- s" boot" evaluate
+ 0 boot
then
dup escapekey @ = if
2drop
OpenPOWER on IntegriCloud