Add skeleton for netifd.

This commit is contained in:
jbnadal
2016-12-13 17:29:43 +01:00
parent d4fe54a278
commit 8d1596c4bf
20 changed files with 1551 additions and 32 deletions

View File

@@ -1,13 +1,13 @@
usb start
dhcp ${kernel_addr_r} zImage
echo -----
printenv ipaddr
printenv kernel_addr_r
printenv ramdisk_addr_r
echo -----
tftp ${kernel_addr_r} zImage
fatwrite mmc 0:1 ${fileaddr} zImage ${filesize}
tftp ${fdt_addr_r} bcm2708-rpi-b.dtb
fatwrite mmc 0:1 ${fileaddr} bcm2708-rpi-b-plus.dtb ${filesize}
tftp ${ramdisk_addr_r} rootfs.cpio.uboot
fatwrite mmc 0:1 ${fileaddr} rootfs.cpio.uboot ${filesize}
setenv bootargs console=ttyAMA0,115200
bootz ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}
echo -----
echo Update Done
echo -----