Deleted Added
full compact
loader.4th (329183) loader.4th (360599)
1\ Copyright (c) 1999 Daniel C. Sobral <dcs@FreeBSD.org>
2\ Copyright (c) 2011-2015 Devin Teske <dteske@FreeBSD.org>
3\ All rights reserved.
4\
5\ Redistribution and use in source and binary forms, with or without
6\ modification, are permitted provided that the following conditions
7\ are met:
8\ 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

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
24\ SUCH DAMAGE.
25\
1\ Copyright (c) 1999 Daniel C. Sobral <dcs@FreeBSD.org>
2\ Copyright (c) 2011-2015 Devin Teske <dteske@FreeBSD.org>
3\ All rights reserved.
4\
5\ Redistribution and use in source and binary forms, with or without
6\ modification, are permitted provided that the following conditions
7\ are met:
8\ 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

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
24\ SUCH DAMAGE.
25\
26\ $FreeBSD: stable/11/stand/forth/loader.4th 329183 2018-02-12 20:51:28Z kevans $
26\ $FreeBSD: stable/11/stand/forth/loader.4th 360599 2020-05-03 04:03:05Z kevans $
27
28only forth definitions
29
30s" arch-i386" environment? [if] [if]
31 s" loader_version" environment? [if]
32 11 < [if]
33 .( Loader version 1.1+ required) cr
34 abort

--- 9 unchanged lines hidden (view full) ---

44
45include /boot/support.4th
46include /boot/color.4th
47include /boot/delay.4th
48include /boot/check-password.4th
49
50only forth definitions
51
27
28only forth definitions
29
30s" arch-i386" environment? [if] [if]
31 s" loader_version" environment? [if]
32 11 < [if]
33 .( Loader version 1.1+ required) cr
34 abort

--- 9 unchanged lines hidden (view full) ---

44
45include /boot/support.4th
46include /boot/color.4th
47include /boot/delay.4th
48include /boot/check-password.4th
49
50only forth definitions
51
52: maybe-resetcons ( -- )
53 loader_color? if
54 ris
55 then
56;
57
52: bootmsg ( -- )
53 loader_color? dup ( -- bool bool )
54 if 7 fg 4 bg then
55 ." Booting..."
56 if me then
57 cr
58;
59

--- 204 unchanged lines hidden ---
58: bootmsg ( -- )
59 loader_color? dup ( -- bool bool )
60 if 7 fg 4 bg then
61 ." Booting..."
62 if me then
63 cr
64;
65

--- 204 unchanged lines hidden ---