summaryrefslogtreecommitdiffstats
path: root/sys/boot/forth/loader.4th
diff options
context:
space:
mode:
authordcs <dcs@FreeBSD.org>2000-09-25 11:18:02 +0000
committerdcs <dcs@FreeBSD.org>2000-09-25 11:18:02 +0000
commitdddc67f9130b7b6d79919c1341fdfa5a5c4fe5c4 (patch)
tree7e2f1e09230962d72e3127d3eee74d4a25519d67 /sys/boot/forth/loader.4th
parent970af0d0445e5fe531a21137ff5734c523f38135 (diff)
downloadFreeBSD-src-dddc67f9130b7b6d79919c1341fdfa5a5c4fe5c4.zip
FreeBSD-src-dddc67f9130b7b6d79919c1341fdfa5a5c4fe5c4.tar.gz
What could possibly have possessed me to forget the "0 (arguments)"
in two of the three boot words in the "boot" redefinition, I have no clue. Fix it. Noticed by: bp Noticed by: adrian
Diffstat (limited to 'sys/boot/forth/loader.4th')
-rw-r--r--sys/boot/forth/loader.4th4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th
index 9ef315e..51bfc92 100644
--- a/sys/boot/forth/loader.4th
+++ b/sys/boot/forth/loader.4th
@@ -69,14 +69,14 @@ only forth also support-functions also builtins definitions
load_kernel_and_modules
?dup if exit then
then
- 1 boot exit
+ 0 1 boot exit
then
else
s" kernelname" getenv? 0= if ( no kernel has been loaded )
load_kernel_and_modules
?dup if exit then
then
- 1 boot exit
+ 0 1 boot exit
then
load_kernel_and_modules
?dup 0= if 0 1 boot then
OpenPOWER on IntegriCloud