aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/forth
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2003-10-27 16:39:49 +0000
committerScott Long <scottl@FreeBSD.org>2003-10-27 16:39:49 +0000
commit4229f75b5c9cdc3b14b6632377dbdf5f1ba68ea0 (patch)
tree756301e253ed5c9cdc62876e5c609cb4ddc3bdea /sys/boot/forth
parent325014126dd8e8c6125dd73ca2c7f6e9d6e33802 (diff)
downloadsrc-4229f75b5c9cdc3b14b6632377dbdf5f1ba68ea0.tar.gz
src-4229f75b5c9cdc3b14b6632377dbdf5f1ba68ea0.zip
Directly call the 'boot' word instead of indirectly evaluating it.
Submitted by: dcs
Notes
Notes: svn path=/head/; revision=121618
Diffstat (limited to 'sys/boot/forth')
-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 7fa2043fce2f..90aeeec9f4b6 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