mirror of
https://github.com/opnsense/src.git
synced 2026-05-27 11:53:25 -04:00
Taken from: https://github.com/freebsd/freebsd.git Commit id: d44ce30d3054a38723f89a161c5e003e64d1aaae
22 lines
461 B
Forth
22 lines
461 B
Forth
\ Example of the file which is automatically loaded by /boot/loader
|
|
\ on startup.
|
|
\ $FreeBSD$
|
|
|
|
\ Load the screen manipulation words
|
|
|
|
cr .( Loading Forth extensions:)
|
|
|
|
cr .( - screen.4th...)
|
|
s" /boot/screen.4th" O_RDONLY fopen dup fload fclose
|
|
|
|
\ Load frame support
|
|
cr .( - frames.4th...)
|
|
s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
|
|
|
\ Load our little menu
|
|
cr .( - menu.4th...)
|
|
s" /boot/menu.4th" O_RDONLY fopen dup fload fclose
|
|
|
|
\ Show it
|
|
cr
|
|
main_menu
|