mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
When forced to draw ASCII lines/boxen, use `=' for the horizontal line
when double frames are requested versus single. MFC after: 3 days X-MFC-to: stable/10
This commit is contained in:
parent
a833f92d40
commit
b2510b83a5
1 changed files with 6 additions and 1 deletions
|
|
@ -39,6 +39,7 @@ variable fill
|
|||
|
||||
\ ASCII frames (used when serial console is detected)
|
||||
45 constant ascii_dash
|
||||
61 constant ascii_equal
|
||||
124 constant ascii_pipe
|
||||
43 constant ascii_plus
|
||||
|
||||
|
|
@ -113,7 +114,11 @@ s" arch-pc98" environment? [if]
|
|||
;
|
||||
|
||||
: f_double ( -- ) \ set frames to double
|
||||
boot_serial? if f_ascii exit then
|
||||
boot_serial? if
|
||||
f_ascii
|
||||
ascii_equal h_el !
|
||||
exit
|
||||
then
|
||||
dh_el h_el !
|
||||
dv_el v_el !
|
||||
dlt_el lt_el !
|
||||
|
|
|
|||
Loading…
Reference in a new issue