diff --git a/Slax/debian/bootfiles/help.txt b/Slax/debian/bootfiles/help.txt index 2da1688..43ad58c 100644 --- a/Slax/debian/bootfiles/help.txt +++ b/Slax/debian/bootfiles/help.txt @@ -2,10 +2,10 @@ Welcome If you need to edit boot command line (for advanced users), hit [Tab]. - When finished, navigate to "Run Slax" menu row and press [Enter]. + When finished, press [Enter]. - Persistent changes + Keep changes persistent Save all filesystem modifications to 'changes' directory and restore those changes next time you boot. Only usable while running from a @@ -15,5 +15,5 @@ Copy to RAM Copies all data to memory during startup so you can eject the boot device. - Make sure to uncheck persistent changes (see above) else your boot device - will be still in use. + Requires enough RAM to store all modules and to run the system. + diff --git a/Slax/debian/bootfiles/syslinux.cfg b/Slax/debian/bootfiles/syslinux.cfg index 1b743fb..b26fdae 100644 --- a/Slax/debian/bootfiles/syslinux.cfg +++ b/Slax/debian/bootfiles/syslinux.cfg @@ -27,6 +27,17 @@ MENU AUTOBOOT Press Esc for options, automatic boot in # second{,s} ... MENU TABMSG [F1] help [Tab] cmdline > LABEL default -MENU LABEL Boot +MENU LABEL Run Slax KERNEL /slax/boot/vmlinuz APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 + +LABEL perch +MENU LABEL Run Slax (Keep changes persistent) +KERNEL /slax/boot/vmlinuz +APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch + +LABEL toram +MENU LABEL Run Slax (Copy to RAM) +KERNEL /slax/boot/vmlinuz +APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=toram +