diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-11 18:08:55 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-11 18:08:55 +0100 |
| commit | 6e40a34fef4b4b140442cc34408b2442043eba21 (patch) | |
| tree | acae1f3828a067e66683bb349054d9c7e7cf8842 /build_config/syslinux.cfg | |
| parent | 05cf1511dfcde10717894bab2004150ad43cca3f (diff) | |
chagne system structure and fix env
Diffstat (limited to 'build_config/syslinux.cfg')
| -rw-r--r-- | build_config/syslinux.cfg | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build_config/syslinux.cfg b/build_config/syslinux.cfg new file mode 100644 index 0000000..5e0dbeb --- /dev/null +++ b/build_config/syslinux.cfg @@ -0,0 +1,24 @@ +UI menu.c32 + +MENU TITLE "reX - ridicolous exiguous unix" + +label 1 + menu label Boot reX + menu default + kernel /images/rex/kernel + initrd /images/rex/boot.img + append quiet + endtext + +label 2 + menu label Boot reX over serial + kernel /images/rex/kernel + initrd /images/rex/boot.img + append quiet console=ttyS0 + endtext + +label 3 + menu label Back to initramfs process + localinitramfs 0 + text help exit and coninue normal initramfs + endtext |