1. 程式人生 > >訊為iTOP4412燒寫最小Linux系統

訊為iTOP4412燒寫最小Linux系統

燒寫最小linux系統,需要四個檔案:


1、u-boot-iTOP-4412.bin       系統引導
2、zImage                               核心
3、ramdisk-uboot.img           根檔案系統
4、system.img                        最小linux系統

 

燒寫步驟:

使用fastboot工具進行燒寫。

1、進入uboot模式

 

2、輸入fastboot啟動fastboot

 

 

3、使用fastboot工具進行燒寫,將以上四個檔案找到,最好直接放在fastboot統計資料夾下,執行cmd命令

燒寫uboot

fastboot flash uboot  u-boot-iTOP-4412.bin

 

燒寫核心

fastboot.exe flash kernel zImage

 

 

燒寫根檔案系統

fastboot.exe flash ramdisk ramdisk-uboot.img

 

 

燒寫最下linux系統

fastboot.exe flash system  system.img

 

擦除

fastboot -w

 

重啟系統

 

fastboot reboot

最後發現系統已經起來了,整個燒寫過程完畢。