1烧些u-boot
首先利用usb或是tftp将uboot下载到内存的c0008000地址(tftp c0008000 uboot.bin),
再将uboot固化到nandflash中:
nand erase 0 40000;
nand write c0008000 0 40000;
2烧些内核
tftp c0008000 zImage;
nand erase 40000 300000;
nand write c0008000 40000 300000;
3挂载文件系统
1烧些u-boot
首先利用usb或是tftp将uboot下载到内存的c0008000地址(tftp c0008000 uboot.bin),
再将uboot固化到nandflash中:
nand erase 0 40000;
nand write c0008000 0 40000;
2烧些内核
tftp c0008000 zImage;
nand erase 40000 300000;
nand write c0008000 40000 300000;
3挂载文件系统

被折叠的 条评论
为什么被折叠?