mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
minus the vendor Makefiles Provide directions for how to bootstrap the vendor sources in FREEBSD-upgrade MFC after 2 weeks Discussed with: rpaulo Sponsored by: EMC / Isilon Storage Division
18 lines
385 B
Text
18 lines
385 B
Text
include start
|
|
# setting noecho stops getch setting cbreak itself so we should need
|
|
# a newline before getch returns, check this works first.
|
|
call OK noecho
|
|
input "abcd\n"
|
|
call 0x61 getch
|
|
noinput
|
|
call 0x62 getch
|
|
noinput
|
|
call 0x63 getch
|
|
noinput
|
|
call 0x64 getch
|
|
noinput
|
|
call 0x0a getch
|
|
# set cbreak, getch should return without needing a newline
|
|
input "ef"
|
|
call OK cbreak
|
|
call 0x65 getch
|