but then I have to put mountpoint "/" on the sd card.
I only want to put "/boot" on the sd card....
But as far as I know all mountpoints are managed in /etc/fstab...
I only want to put "/boot" on the sd card....
But as far as I know all mountpoints are managed in /etc/fstab...
I've put an ext2 filesystem on my SD-card and copied /boot onto it. Then I combined the usb-disc and SD-card sections for U-boot in Martin Michlmayr's guide
http://www.cyrius.com/debian/kirkwood/sheevaplug/unpack.html so the system will use /dev/sda1 as the root-fs, but wiil boot from the SD-card.
Code:
setenv bootargs_root 'root=/dev/sda1 rootdelay=10'
setenv bootcmd_mmc 'mmcinit; ext2load mmc 0 0x0800000 uInitrd; ext2load mmc 0 0x400000 uImage'
setenv bootcmd 'setenv bootargs $(console) $(bootargs_root); run bootcmd_mmc; bootm 0x400000 0x0800000'
saveenv
setenv bootcmd_mmc 'mmcinit; ext2load mmc 0 0x0800000 uInitrd; ext2load mmc 0 0x400000 uImage'
setenv bootcmd 'setenv bootargs $(console) $(bootargs_root); run bootcmd_mmc; bootm 0x400000 0x0800000'
saveenv
/Svend




