[quote=“Wayne Workman, post: 45964, member: 28155”][CODE]wget https://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-5.00.zip
unzip syslinux-5.00.zip
rm syslinux-5.00.zip
cd linux[/CODE]
Now, we must find the flash drive:
[CODE]ls -l /dev/sd*[/CODE]
[B]It IS NOT sda, sda1, sda2, etc.[/B]
It’s probably sdb if your system only has one hard drive and one flash drive.
[CODE]fdisk /dev/sdb
d (enter)
n (enter)
(enter through default values)
a (enter)
w (enter)[/CODE]
fdisk exits when done writing.
Make the newly created partition (/dev/sdb1) into a FAT16 partition
[CODE]mkdosfs -IF 16 /dev/sdb1[/CODE]
Run syslinux
[CODE]./syslinux -i /dev/sdb1[/CODE]
Copy MBR info
[CODE]cd …
cd mbr
dd conv=notrunc bs=440 count=1 if=mbr.bin of=/dev/sdb[/CODE]
Copy /tftpboot to new partition
[CODE]cp -dR /tftpboot /<FlashDriveMountName>[/CODE]
Here’s where stuff gets fuzzy for me…
You need to rename a bootfile in /tftpboot to /syslinux.cfg
I assume you just rename the file you want to use… so we will use undionly.kpxe
[CODE]cd /[/CODE]
[CODE]cd <FlashDriveMountName>[/CODE]
[CODE]cp /tftpboot/undionly.kpxe syslinux.cfg[/CODE]
(some of the) Resources used:
[url]http://www.fogproject.org/wiki/index.php?title=Bootable_Media[/url]
[url]http://www.syslinux.org/wiki/index.php/HowTos[/url]
[url]http://tldp.org/HOWTO/Partition/fdisk_partitioning.html[/url]
[url]http://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/how-do-i-format-an-sd-card-to-fat16-using-linux-so-that-i-can-use-it-on-my-pda-533725/[/url]
[url]https://www.kernel.org/pub/linux/utils/boot/syslinux/[/url]
NOTES: Ended up using syslinux 5.0 because the files that their how-to was refering to just didn’t exist in the latest version and I didn’t know what to do. I took a guess and picked 5 and the referenced files were there.
Beware, I’ve not tested any of this yet, I merely went through the steps myself till I sort of figured it out… maybe. It’s late… going to bed…
-.-[/quote]
Dude, I followed your instructions to the letter, and nothing …
I still appears boot: the display … waiting an order …
Any ideas ??? Other help ???
Thank you very much!