> Hi, > > when I try to boot my notebook from a USB disc, the system freezes > completely. After displaying the text (or menu), it doesn't react to any > key, even Ctrl+Alt+Del doesn't work. The config is pretty simple: > > ------------------------------------------- > SAY Booting Linux from USB... > KERNEL /boot/vmlinuz > DEFAULT Vaio > PROMPT 1 > > LABEL Black > KERNEL /boot/vmlinuz > APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 > vga=0x307 HOST=Black > > LABEL Vaio > KERNEL /boot/vmlinuz > APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 > vga=0x305 HOST=Vaio > ------------------------------------------- > > With "PROMPT 0", it boots without problems. > > As the same configuration works well with my PC, I guess it has > something to do with the BIOS. The notebook is a Vaio VGN-Z21VN, approx. > 6 years old. > Any ideas? > > Regards, > Bernd > > _______________________________________________ > Syslinux mailing list > Submissions to Syslinux at zytor.com > Unsubscribe or set options at: > http://www.zytor.com/mailman/listinfo/syslinux >The first KERNEL directive in your cfg (the one under the SAY directive) should be deleted (or at least comment it out with "#"): ------------------------------------------- SAY Booting Linux from USB... # KERNEL /boot/vmlinuz DEFAULT Vaio PROMPT 1 LABEL Black KERNEL /boot/vmlinuz APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 vga=0x307 HOST=Black LABEL Vaio KERNEL /boot/vmlinuz APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 vga=0x305 HOST=Vaio ------------------------------------------- When using "PROMPT 1", you should see the "boot:" prompt. Pressing [Enter], should boot the "Vaio" label. When using "PROMPT 0", the "Vaio" label should boot immediately. Additionally, generally speaking I would suggest not to mix upper-case with lower-case labels (e.g. "LABEL vaio", instead of "Vaio"). Regards, Ady.
Hi, when I try to boot my notebook from a USB disc, the system freezes completely. After displaying the text (or menu), it doesn't react to any key, even Ctrl+Alt+Del doesn't work. The config is pretty simple: ------------------------------------------- SAY Booting Linux from USB... KERNEL /boot/vmlinuz DEFAULT Vaio PROMPT 1 LABEL Black KERNEL /boot/vmlinuz APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 vga=0x307 HOST=Black LABEL Vaio KERNEL /boot/vmlinuz APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 vga=0x305 HOST=Vaio ------------------------------------------- With "PROMPT 0", it boots without problems. As the same configuration works well with my PC, I guess it has something to do with the BIOS. The notebook is a Vaio VGN-Z21VN, approx. 6 years old. Any ideas? Regards, Bernd
On 26.10.2014 17:08, Ady wrote:> >> Hi, >> >> when I try to boot my notebook from a USB disc, the system freezes >> completely. After displaying the text (or menu), it doesn't react to any >> key, even Ctrl+Alt+Del doesn't work. The config is pretty simple: >> >> ------------------------------------------- >> SAY Booting Linux from USB... >> KERNEL /boot/vmlinuz >> DEFAULT Vaio >> PROMPT 1 >> >> LABEL Black >> KERNEL /boot/vmlinuz >> APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 >> vga=0x307 HOST=Black >> >> LABEL Vaio >> KERNEL /boot/vmlinuz >> APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 >> vga=0x305 HOST=Vaio >> ------------------------------------------- >> >> With "PROMPT 0", it boots without problems. >> >> As the same configuration works well with my PC, I guess it has >> something to do with the BIOS. The notebook is a Vaio VGN-Z21VN, approx. >> 6 years old. >> Any ideas? > > The first KERNEL directive in your cfg (the one under the SAY > directive) should be deleted (or at least comment it out with "#"):OK, it doesn't make much sense there, but I don't think it can cause the system to hang. And actually commenting it out didn't change anything.> When using "PROMPT 1", you should see the "boot:" prompt.Yes I see the prompt (as I did before).> Pressing [Enter], should boot the "Vaio" label.I know it _should_ boot, but it _doesn't_, that's the problem. At this point, the only thing I can do is a hard reset. Bernd -- http://sudrala.de
Bernd Eggink <monoped at sudrala.de> writes:> when I try to boot my notebook from a USB disc, the system freezes > completely. After displaying the text (or menu), it doesn't react to any > key, even Ctrl+Alt+Del doesn't work. The config is pretty simple: > > ------------------------------------------- > SAY Booting Linux from USB... > KERNEL /boot/vmlinuz > DEFAULT Vaio > PROMPT 1 > > LABEL Black > KERNEL /boot/vmlinuz > APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 > vga=0x307 HOST=Black > > LABEL Vaio > KERNEL /boot/vmlinuz > APPEND ro initrd=/boot/initramfs console=ttyS0,38400 console=tty0 > vga=0x305 HOST=Vaio > ------------------------------------------- > > With "PROMPT 0", it boots without problems. > > As the same configuration works well with my PC, I guess it has > something to do with the BIOS. The notebook is a Vaio VGN-Z21VN, approx. > 6 years old. > Any ideas?Maybe it's just the keyboard being inoperative? Try adding TIMEOUT 50 and/or NOHALT 1 options. Also look for USB Legacy and keyboard options in the BIOS setup. -- Regards, Feri.