Here's my syslinux.cfg:
CODE
default persist
timeout 550
prompt menu
menu background splash.jpg
menu title Welcome to MCNLive!
menu color border 0 #ffffffff #00000000
menu color sel 0 #80ffffff #20ffffff
menu color title 0 #ffffffff #00000000
menu color tabmsg 0 #ffffffff #00000000
menu color unsel 0 #ffffffff #00000000
menu color hotsel 0 #ff000000 #ffffffff
menu color hotkey 0 #ffffffff #ff000000
label livecd
menu label Boot with default settings
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 vga=788 keyb=us splash=verbose
label vesa
menu label Boot with vesa video mode
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 vga=788 keyb=us olddetect vesa
label copy2ram
menu label Boot -copying entire system to RAM
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 vga=788 keyb=us splash=verbose copy2ram
label persist
menu label Boot with persistent changes with vesa
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 vga=788 keyb=us splash=verbose persist vesa
label ntfsrw
menu label Boot - mounting NTFS read-write
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 vga=788 keyb=us splash=verbose ntfsrw
label safeboot
menu label Safeboot - noapic acpi=off olddetect
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 olddetect acpi=off vga=788 keyb=us noapic nolapic noscsi nopcmcia nomce irqpoll
label fromusb
menu label Boot from USB
kernel vmlinuz
append livecd=livecd initrd=initrd.gz root=/dev/rd/3 vga=788 keyb=us splash=verbose fromusb
With this code I can boot my USB stick but I don't get the menu. I figured out the bootloader was Lilo so I tried a couple of things from lilo's documentation, nothing on that side either.
Do I need to recompile something? is there an option when building the USB key to change?
any idea?
TIA