Am Thursday 17 March 2011 10:17:45 schrieb Davide: > x_bootargs=console=ttyS0,115200
Seems to be OK. > x_bootcmd_kernel=fatload usb 0:1 0x6400000 uImage Where are you doing "usb start"? > x_bootargs_root=root=/dev/sda1 ro rootfstype=ext2 That probably should be /dev/sda2 because sda1 is your /boot partition. You have to specify this in fstab, too. > One other thing: how do I get uboot to tell kernel to load initrd ? I guess you can try like this: fatload usb 0:1 0x800000 uImage fatload usb 0:1 0x1100000 uInitrd bootm 0x800000 0x1100000 Which means: Load kernel to RAM address 0x800000, load initrd to 0x1100000 and then boot both. -- Thorsten Mühlfelder Salix OS: www.salixos.org _______________________________________________ ARMedslack mailing list [email protected] http://lists.armedslack.org/mailman/listinfo/armedslack
