[How To] Set U-Boot envs for USB booting with Kirkwood plugs May 20, 2014 09:57PM |
Admin Registered: 13 years ago Posts: 19,104 |
arcNumber=3960 machid=f78
ethaddr=00:xx:x:xx:xx:xx
mtdparts=mtdparts=orion_nand:2M(u-boot),3M(uImage),3M(uImage2),8M(failsafe),112M(root)
baudrate=115200 bootcmd=run bootcmd_usb; usb stop; reset bootcmd_usb=run usb_init; run usb_load_uimage; run set_bootargs_usb; run usb_boot; bootdelay=3 console=ttyS0,115200 ethact=egiga0 ethaddr=00:xx:x:xx:xx:xx led_error=orange blinking led_exit=green off led_init=green blinking mainlineLinux=yes mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:2M(u-boot),3M(uImage),3M(uImage2),8M(failsafe),112M(root) partition=nand0,2 set_bootargs_usb=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts stderr=serial stdin=serial stdout=serial usb_boot=if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000;else bootm 0x800000;fi; usb_device=0:1 usb_init=usb start usb_load_uimage=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage usb_rootdelay=10 arcNumber=3960 machid=f78 usb_root=LABEL=rootfs usb_rootfstype=ext3
Re: [How To] Set U-Boot envs for USB booting with Kirkwood plugs May 22, 2014 07:27PM |
Registered: 10 years ago Posts: 7 |
mike
Re: [How To] Set U-Boot envs for USB booting with Kirkwood plugs October 31, 2014 02:47PM |