mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
boot: wrap up logo branding
Time is ticking.... tick tock tick tock :)
This commit is contained in:
parent
60f47069bf
commit
5dc2a15077
4 changed files with 8 additions and 10 deletions
|
|
@ -14,10 +14,10 @@ FILES+= loader.help
|
|||
FILES+= logo-beastie.4th
|
||||
FILES+= logo-beastiebw.4th
|
||||
FILES+= logo-fbsdbw.4th
|
||||
FILES+= logo-hourglass.4th
|
||||
FILES+= logo-hourglassbw.4th
|
||||
FILES+= logo-orb.4th
|
||||
FILES+= logo-orbbw.4th
|
||||
FILES+= logo-portal.4th
|
||||
FILES+= logo-portalbw.4th
|
||||
FILES+= menu.4th
|
||||
FILES+= menu-commands.4th
|
||||
FILES+= menusets.4th
|
||||
|
|
|
|||
|
|
@ -64,9 +64,9 @@ variable logoY
|
|||
s" loader_logo" getenv dup -1 = over 0= or if
|
||||
dup 0= if 2drop else drop then \ getenv result unused
|
||||
loader_color? if
|
||||
s" try-include /boot/logo-portal.4th"
|
||||
s" try-include /boot/logo-hourglass.4th"
|
||||
else
|
||||
s" try-include /boot/logo-portalbw.4th"
|
||||
s" try-include /boot/logo-hourglassbw.4th"
|
||||
then
|
||||
else
|
||||
2drop ( c-addr/u -- ) \ getenv result unused
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
\
|
||||
\ $FreeBSD$
|
||||
|
||||
48 logoX ! 8 logoY ! \ Initialize logo placement defaults
|
||||
48 logoX ! 9 logoY ! \ Initialize logo placement defaults
|
||||
|
||||
: logo+ ( x y c-addr/u -- x y' )
|
||||
2swap 2dup at-xy 2swap \ position the cursor
|
||||
|
|
@ -34,9 +34,8 @@
|
|||
1+ \ increase y for next time we're called
|
||||
;
|
||||
|
||||
: logo ( x y -- ) \ color portal logo (15 rows x 30 columns)
|
||||
: logo ( x y -- ) \ color hourglass logo (15 rows x 32 columns)
|
||||
|
||||
s" " logo+
|
||||
s" #[37;1m @@@@@@@@@@@@@@@@@@@@@@@@@@@@" logo+
|
||||
s" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@" logo+
|
||||
s" @@@@@ @@@@@" logo+
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
\
|
||||
\ $FreeBSD$
|
||||
|
||||
48 logoX ! 8 logoY ! \ Initialize logo placement defaults
|
||||
48 logoX ! 9 logoY ! \ Initialize logo placement defaults
|
||||
|
||||
: logo+ ( x y c-addr/u -- x y' )
|
||||
2swap 2dup at-xy 2swap \ position the cursor
|
||||
|
|
@ -33,9 +33,8 @@
|
|||
1+ \ increase y for next time we're called
|
||||
;
|
||||
|
||||
: logo ( x y -- ) \ B/W portal logo (15 rows x 30 columns)
|
||||
: logo ( x y -- ) \ B/W hourglass logo (15 rows x 32 columns)
|
||||
|
||||
s" " logo+
|
||||
s" @@@@@@@@@@@@@@@@@@@@@@@@@@@@" logo+
|
||||
s" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@" logo+
|
||||
s" @@@@@ @@@@@" logo+
|
||||
Loading…
Reference in a new issue