> tftpboot 0x01100000 armedslack-13.37/uinitrd-kirkwood.img > tftpboot 0x00800000 armedslack-13.37/uImage-kirkwood > setenv bootargs console=ttyS0,115200 nodhcp kbd=us root=/dev/ram rw > bootm 0x00800000 0x01100000 > > *** install armedslack and reboot *** > > setenv bootargs_console console=ttyS0,115200 > setenv bootargs_root 'root=/dev/sda3 waitforroot=10 rootfs=ext4' > setenv bootcmd 'setenv bootargs $(bootargs_console) $(bootargs_root); run > bootcmd_slk ; reset' > setenv bootcmd_slk 'usb start;ext2load usb 0:1 0x01100000 > /uinitrd-kirkwood;ext2load usb 0:1 0x00800000 /uImage-kirkwood;bootm > 0x00800000 0x01100000' > setenv ethaddr F0:AD:4E:00:E5:BD > setenv eth1addr F0:AD:4E:00:E5:BE > saveenv > reset
I found that the u-boot on my Trimslice wouldn't work with these settings as, for some reason, it failed to expand some of the variables set. Look at these instead ftp://ftp.armedslack.org/armedslack/armedslack-devtools/tegra/booting.txt You'll want to set all of the relevant settings in the single 'bootargs' variable. It'll probably work then. Try this: setenv bootargs 'console=ttyS0,115200 root=/dev/sda3 waitforroot=5 rootfs=ext4' setenv bootcmd_slk 'usb start;ext2load usb 0:1 0x01100000 /uinitrd-kirkwood;ext2load usb 0:1 0x00800000 /uImage-kirkwood;bootm 0x00800000 0x01100000' setenv bootcmd 'run bootcmd_slk ; reset' save reset _______________________________________________ ARMedslack mailing list [email protected] http://lists.armedslack.org/mailman/listinfo/armedslack
