OK6410开发记录

来源:互联网 发布:视频剪辑软件有哪些 编辑:程序博客网 时间:2024/05/29 09:52

个人烧写记录


SD卡里面写的是mmc.bin不能用uboot.bin
uboot image
开发板侧 #dnw 50008000
PC侧 #sudo dnw -a 50008000 -f uboot.bin
开发板侧 #nand erase 0 100000 
               #nand write.uboot 50008000 0 100000

kernel image
开发板侧 #dnw 50008000
PC侧 #sudo dnw -a 50008000 -f zImage
开发板侧 #nand erase 100000 500000
               #nand write.e 50008000 100000 500000

cramfs 

开发板侧 #dnw 50008000
PC侧 #sudo dnw -a 50008000 -f cramfs
开发板侧 #nand erase 600000 10000000
               #nand write.e 50008000 600000 10000000

make menuconfig的时候如下错误

Linux Error: curses.h: No such file or directory Problem Solution

Open terminal and type the following command to install ncurses:
$ sudo apt-get install libncurses5-dev libncursesw5-dev


0 0
原创粉丝点击