1 \ Copyright (c) 1999 Daniel C. Sobral <dcs@FreeBSD.org>
2 \ Copyright (c) 2011-2015 Devin Teske <dteske@FreeBSD.org>
5 \ Redistribution and use in source and binary forms, with or without
6 \ modification, are permitted provided that the following conditions
8 \ 1. Redistributions of source code must retain the above copyright
9 \ notice, this list of conditions and the following disclaimer.
10 \ 2. Redistributions in binary form must reproduce the above copyright
11 \ notice, this list of conditions and the following disclaimer in the
12 \ documentation and/or other materials provided with the distribution.
14 \ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 \ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 \ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 \ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 \ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 \ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 \ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 \ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 only forth definitions
29 \ provide u> if needed
30 s" u>" sfind [if] drop [else]
33 2dup u< if 2drop 0 exit then
34 swap u< if -1 exit then
39 \ provide xemit if needed
40 s" xemit" sfind [if] drop [else]
43 dup 0x80 u< if emit exit then
46 2/ >r dup 0x3F and 0x80 or swap 6 rshift r>
48 begin dup 0x80 u< 0= while emit repeat drop
52 s" arch-i386" environment? [if] [if]
53 s" loader_version" environment? [if]
55 .( Loader version 1.1+ required) cr
59 .( Could not get loader version!) cr
64 512 dictthreshold ! \ cells minimum free space
65 2048 dictincrease ! \ additional cells each time
67 include /boot/support.4th
68 include /boot/color.4th
69 include /boot/delay.4th
70 include /boot/check-password.4th
72 only forth definitions
74 : maybe-resetcons ( -- )
81 loader_color? dup ( -- bool bool )
89 \ menu-unset may not be present
90 s" beastie_disable" getenv
92 s" YES" compare-insensitive 0= if
112 only forth also support-functions also builtins definitions
115 0= if ( interpreted ) get_arguments then
117 \ Unload only if a path was passed
123 s" kernelname" getenv? if ( a kernel has been loaded )
127 load_kernel_and_modules
130 bootmsg 0 1 boot exit
133 s" kernelname" getenv? if ( a kernel has been loaded )
137 load_kernel_and_modules
140 bootmsg 0 1 boot exit
142 load_kernel_and_modules
143 ?dup 0= if bootmsg 0 1 boot then
148 \ Prepares to boot as specified by loaded configuration files.
151 0= if ( interpreted ) get_arguments then
153 load_kernel_and_modules
154 ?dup 0= if 0 1 autoboot then
157 also forth definitions previous
162 only forth definitions also support-functions
166 \ Initializes support.4th global variables, sets loader_conf_files,
167 \ processes conf files, and, if any one such file was successfully
168 \ read to the end, loads kernel and modules.
170 : start ( -- ) ( throws: abort & user-defined )
171 s" /boot/defaults/loader.conf" initialize
173 include_nextboot_file
174 \ If the user defined a post-initialize hook, call it now
175 s" post-initialize" sfind if execute else drop then
176 \ Will *NOT* try to load kernel and modules if no configuration file
177 \ was successfully loaded!
179 s" loader_delay" getenv -1 = if
185 ." Loading Kernel and Modules (Ctrl-C to Abort)" cr
186 s" also support-functions" evaluate
187 s" set delay_command='load_xen_throw load_kernel load_modules'" evaluate
188 s" set delay_showdots" evaluate
196 \ Overrides support.4th initialization word with one that does
197 \ everything start one does, short of loading the kernel and
198 \ modules. Returns a flag.
200 : initialize ( -- flag )
201 s" /boot/defaults/loader.conf" initialize
203 include_nextboot_file
204 \ If the user defined a post-initialize hook, call it now
205 s" post-initialize" sfind if execute else drop then
211 \ Read a configuration file, whose name was specified on the command
212 \ line, if interpreted, or given on the stack, if compiled in.
214 : (read-conf) ( addr len -- )
216 include_conf_files \ Will recurse on new loader_conf_files definitions
219 : read-conf ( <filename> | addr len -- ) ( throws: abort & user-defined )
229 \ show, enable, disable, toggle module loading. They all take module from
232 : set-module-flag ( module_addr val -- ) \ set and print flag
234 dup module.name strtype
235 module.flag @ if ." will be loaded" else ." will not be loaded" then cr
238 : enable-module find-module ?dup if true set-module-flag then ;
240 : disable-module find-module ?dup if false set-module-flag then ;
242 : toggle-module find-module ?dup if dup module.flag @ 0= set-module-flag then ;
246 \ Show loading information about a module.
248 : show-module ( <module> -- ) find-module ?dup if show-one-module then ;
250 \ Words to be used inside configuration files
252 : retry false ; \ For use in load error commands
253 : ignore true ; \ For use in load error commands
255 \ Return to strict forth vocabulary
263 : .? 2 spaces 2swap 15 #type 2 spaces type cr ;
265 \ Execute the ? command to print all the commands defined in
266 \ C, then list the ones we support here. Please note that this
267 \ doesn't use pager_* routines that the C implementation of ?
268 \ does, so these will always appear, even if you stop early
269 \ there. And they may cause the commands to scroll off the
270 \ screen if the number of commands modulus LINES is close
274 s" boot-conf" s" load kernel and modules, then autoboot" .?
275 s" read-conf" s" read a configuration file" .?
276 s" enable-module" s" enable loading of a module" .?
277 s" disable-module" s" disable loading of a module" .?
278 s" toggle-module" s" toggle loading of a module" .?
279 s" show-module" s" show module load data" .?
280 s" try-include" s" try to load/interpret files" .?
283 : try-include ( -- ) \ see loader.4th(8)
284 ['] include ( -- xt ) \ get the execution token of `include'
285 catch ( xt -- exception# | 0 ) if \ failed
286 LF parse ( c -- s-addr/u ) 2drop \ advance >in to EOL (drop data)
287 \ ... prevents words unused by `include' from being interpreted
289 ; immediate \ interpret immediately for access to `source' (aka tib)
291 only forth definitions