In Linux host the solution is:
Hi, when I investigated it further I found out that the unetbootin application didn't use the isolinux.cfg in the boot folder. It created it's own syslinux.cfg file in the root of the device. When I copied the isolinux.cfg file to syslinux.cfg in the root, everything worked! So this is a unetbootin bug! I have now run both coreplus and tinycore from USB thumbdrive successfully.
Thanks,
B-O
But could you please help me to solve this problem in Windows host?
menu.lst file:
default 0
timeout 10
title UNetbootin
find --set-root /unetbtin/ubnkern
kernel /unetbtin/ubnkern loglevel=3 cde
initrd /unetbtin/ubninit
boot
title Boot TinyCore
find --set-root /boot/vmlinuz
kernel /boot/vmlinuz loglevel=3 cde
initrd /boot/core.gz
boot
title Boot TinyCore (on slow devices, waitusb=5)
find --set-root /boot/vmlinuz
kernel /boot/vmlinuz loglevel=3 cde waitusb=5
initrd /boot/core.gz
boot
title Boot Core (command line only).
find --set-root /boot/vmlinuz
kernel /boot/vmlinuz loglevel=3
initrd /boot/core.gz
boot
title Boot Core (command line only on slow devices, waitusb=5)
find --set-root /boot/vmlinuz
kernel /boot/vmlinuz loglevel=3 waitusb=5
initrd /boot/core.gz
boot
isolinux.cfg:
DEFAULT tc
UI menu.c32
PROMPT 0
TIMEOUT 600
ONTIMEOUT tc
F1 f1
F2 f2
F3 f3
F4 f4
MENU TITLE TinyCore
MENU MARGIN 10
MENU VSHIFT 5
MENU ROWS 5
MENU TABMSGROW 14
MENU TABMSG Press ENTER to boot, TAB to edit, or press F1 for more information.
MENU HELPMSGROW 15
MENU HELPMSGENDROW -3
MENU AUTOBOOT BIOS default device boot in # second{,s}...
LABEL tc
MENU LABEL Boot TinyCore
TEXT HELP
Boot TinyCore with Embedded X/GUI extensions.
Boot media is removable. Use TAB to edit options for specific needs.
ENDTEXT
KERNEL /boot/vmlinuz
INITRD /boot/core.gz
APPEND loglevel=3 cde
LABEL tcw
MENU LABEL Boot TinyCore (on slow devices, waitusb=5)
TEXT HELP
Boot TinyCore with Embedded X/GUI extensions, if using a slow device.
Boot media is removable. Use TAB to edit options for specific needs.
ENDTEXT
KERNEL /boot/vmlinuz
INITRD /boot/core.gz
APPEND loglevel=3 cde waitusb=5
LABEL core
MENU LABEL Boot Core (command line only).
TEXT HELP
No embedded X/GUI extensions are loaded. User extensions scanned or specified
will be loaded, and will need to provide X/GUI if required.
ENDTEXT
KERNEL /boot/vmlinuz
INITRD /boot/core.gz
APPEND loglevel=3
LABEL corew
MENU LABEL Boot Core (command line only on slow devices, waitusb=5)
TEXT HELP
No embedded X/GUI extensions are loaded. User extensions scanned or specified
will be loaded, and will need to provide X/GUI if required.
ENDTEXT
KERNEL /boot/vmlinuz
INITRD /boot/core.gz
APPEND loglevel=3 waitusb=5
Seems I should change the menu.lst file but I don't know how should I do that.