summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authordcs <dcs@FreeBSD.org>2000-09-05 16:30:09 +0000
committerdcs <dcs@FreeBSD.org>2000-09-05 16:30:09 +0000
commit42c0616fdd333d05f0ba08566b790d1b57cd4f5a (patch)
tree338ab0c0972780a79081cf0e297d491909ce79c8 /share
parent61412ddf366d3ca794ae355babaa775939f7f8a3 (diff)
downloadFreeBSD-src-42c0616fdd333d05f0ba08566b790d1b57cd4f5a.zip
FreeBSD-src-42c0616fdd333d05f0ba08566b790d1b57cd4f5a.tar.gz
Good thing about these examples is that no one uses them, so they can
stay broken for months without anyone noticing. The boot-conf command was changed as to reproduce the behavior of builtin loader words precisely. As a result, it now always need an argument, possibly 0 indicating that no other arguments are being passed. This broke in a non-deterministic way (ie, it could go on working as if everything was fine).
Diffstat (limited to 'share')
-rw-r--r--share/examples/bootforth/menuconf.4th6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/examples/bootforth/menuconf.4th b/share/examples/bootforth/menuconf.4th
index b154857..a769f77 100644
--- a/share/examples/bootforth/menuconf.4th
+++ b/share/examples/bootforth/menuconf.4th
@@ -80,20 +80,20 @@
1 25 at-xy cr
." Loading /boot/stable.conf. Please wait..." cr
s" /boot/stable.conf" read-conf
- boot-conf exit
+ 0 boot-conf exit
then
dup 50 = if
drop
1 25 at-xy cr
." Loading /boot/current.conf. Please wait..." cr
s" /boot/current.conf" read-conf
- boot-conf exit
+ 0 boot-conf exit
then
dup 51 = if
drop
1 25 at-xy cr
." Proceeding with standard boot. Please wait..." cr
- boot-conf exit
+ 0 boot-conf exit
then
dup 52 = if
drop
OpenPOWER on IntegriCloud