[Development] i.MX6UL how to answer the following question burning in uboot tftp

i.MX6UL / i.MX6ULL Development FAQ

Mill-based electronic i.MX6UL / i.MX6ULL products (V1.0)

3.1 How tftp burn in uboot below?

A: The network programming may be used as specific instructions downloaded tftp:
 the uboot arranged below the IP
setenv ipaddr 192.168.30.106 (example)
setenv ServerIP 192.168.30.103 (example)
setenv ethaddr 00: 01: 03: A0: 03:. 11 (example)
the saveenv
Kernel:
       TFTP LOADADDR} {$ zImage-MYD-y6ull
       NAND eRASE // erase 0x600000 0xA00000
       nand write $ {loadaddr} 0x600000 0xA00000 // writes
DTB:
       TFTP fdt_addr} {$ zImage-MYD-y6ull-14x14-gpmi-WEIM .dtb
       NAND ERASE 0x1000000 0x100000
       NAND Write fdt_addr} {$ 0x1000000 0x100000
the rootfs:
       TFTP 0x85000000 rootfs.ubi (UBI file system)
       NAND ERASE 0x1100000 0x9000000
       NAND write.e 0x85000000 0x1100000 0x9000000
Note: The above address is for reference only modified according to the actual situation partition

发布了52 篇原创文章 · 获赞 7 · 访问量 3万+

Guess you like

Origin blog.csdn.net/u011837423/article/details/92614020