【内核】uboot与内核烧写步骤
1,启动时按空格
2,执行printenv,查看uboot网络配置。
过程:
一, # setenv ipaddr 172.16.6.100
二,# setenv serverip (你的主机IP地址)
三,# setenv netmask 255.255.255.0
四,# setenv gatewayip 172.16.6.1
五,# saveenv
六,# printenv 重新查看uboot环境。
3,修改主机IP,使得XP的IP和uboot在同一网段之内。
4, 将u-boot.bin zImage 复制到tftpd32同一目录中。
5,启动tftp32
烧写u-boot:
6, tftp 0x50008000 u-boot.bin ;下载
7, nand erase 0x00000000 0x200000 ;擦除u-boot分区
8, nand write.uboot 0x50008000 0x00000000 0x100000 ;将u-boot写入flash分区中。
烧写内核:
9,tftp 0x50008000 zImage
10, nand erase 0x200000 0x400000
11, nand write.e 0x50008000 0x200000 0x400000
注意:u-boot zImage是在虚拟机中编译出来的