Note, the instruction describes all steps how to start from scratch. It is for advanced users who wants to generate
everything from ZERO point.
I guess you have to use the existing packages from bipomftp.
http://www.bipom.com/cgi-bin/yabb2/YaBB.pl?num=1263702424/1#11)
Download 2 packages ( Linux kernel and Debian RootFs)
to /home/mini/fs/debian folder
Linux kernel: linux2.6.30.4_06Feb2010.tar.bz2
RootFS (Debian Lenny): debian_rootfs_06Feb2010.tar.bz2
change to that folder
cd /home/mini/fs/debian
2) Insert the Flash USB drive to a PC
Let\'s say you have Linux partitions called EXT3
and MSDOS partition called FAT. I mean labels
It has to mount your 2 partitions to
/dev/sdb1 -> /media/FAT
/dev/sdb2 -> /media/EXT3
3)
sudo tar [ch8211]xvjf debian_rootfs_06Feb2010.tar.bz2
Password is max
It will create EXT3 folder under /home/mini/fs/debian
4)
Copy all files from EXT3 folder to your Linux partition
sudo cp -R EXT3/* /media/EXT3
5)
sudo tar [ch8211]xvjf linux2.6.30.4_06Feb2010.tar.bz2
It will create FAT folder under /home/mini/fs/debian
6)
Copy all files from FAT folder to your MSDOS partition
sudo cp -R FAT/* /media/FAT
Note, all the steps are described in details on the last page
of the installation guide.
7) Edit /media/EXT3/etc/network/interfaces file to match your needs
Unmount Flash drive, connect to Gadget PC.
Don\'t forget to adapt U-Boot
setenv bootargs mem=32M console=ttyS1,115200 root=/dev/sda2 rw rootwait
setenv bootcmd \'usb start; fatload usb 0:1 0x21000000 uimage; bootm 0x21000000\'
saveenv