1. 程式人生 > >2017-9-13-Linux移植:u-boot的移植

2017-9-13-Linux移植:u-boot的移植

ble spa order makefile make 周立功 itl add tar命令

1、u-boot下載地址:http://ftp.denx.de/pub/u-boot/

2、Linux環境下使用tar命令解壓壓縮包:tar -xzvf file.tar.gz

tar -xvf file.tar //解壓 tar包
tar -xzvf file.tar.gz //解壓tar.gz
tar -xjvf file.tar.bz2 //解壓 tar.bz2
tar -xZvf file.tar.Z //解壓tar.Z
tar -Jxvf fle.tar.xz //解壓tar.xz

3、修改Makefile文件裏面的交叉編譯工具。

4、指定CPU、指定使用的開發板。

5、u-boot發展至今已經有很多命令了,類似Linux下的shell。

6、《周立功嵌入式Linux開發教程(下冊)》第10章有u-boot需要熟悉的一些資料。

2017-9-13-Linux移植:u-boot的移植