1. 安装Eclipse及它的C/C++开发环境:
# dnf install eclipse
# dnf install eclipse-cdt
这个步骤非常简单。新的Fedora系统使用dnf命令,老的Fedora系统使用yum命令。Ubuntu系统使用apt-get,或者直接从Eclipse网站下载源代码,都是可以的。
2. 从U-Boot官方网站下载源代码:
http://www.denx.de/wiki/U-Boot/SourceCode
这里当然要用最新稳定版。
3. 解压U-Boot源代码并创建Git仓库:
$ tar -xvf u-boot-latest.tar.bz2
$ cd u-boot-2017.01/
$ git init
$ git add *
这一步并不是编译必须,但是应该养成习惯。从官方网站下载的源代码,解压后的第一步就是创建本地GIt仓,以便查看开发历史。
4. 使用Eclipse导入U-Boot的Makefile项目 :
Files -> Import -> Existing Code as Makefile Project
$ git add .gitignore
选择U-Boot源代码所在的目录,目录名会自动作为工程名字。交叉编译链选择“None”,我们会在Makefile里指定交叉编译器。.gitignore文件是U-Boot工程自带的,我们也把它加入Git仓
5. 在终端里导入config文件:
$ make CROSS_COMPILE=/opt/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf- am335x_boneblack_defconfig
$ vim .gitignore
!.config
$ git add .gitignore .config
由于make *_defconfig步骤不能在Eclipse里进行,所以我们还是在终端里执行它,生成的.config文件加入git仓库。Eclipse会默认忽略.config文件,所以我们得将它从ignore列表排除。虽然加入git仓的步骤不是必须的,但还是推荐执行。
6. 安装ncurses库及其头文件,然后进行make menuconfig:
# dnf install ncurses-libs.x86_64 ncurses-devel.x86_64
# dnf install ncurses-libs.i686 ncurses-devel.i686
$ make CROSS_COMPILE=/opt/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf- menuconfig
如果进行过Linux内核开发,这里的menuconfig界面看起来会非常熟悉。如果需要添加某个驱动,在这里选中并保存。
7. 最后在Makefile里添加CROSS_COMPILE选项,并在Eclipse工程里编译:
CROSS_COMPILE=/opt/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-
这时就能看到工程目录下生成的目标文件了。
虽然Vim使用ctags工具,也能进行函数跳转,但是Eclipse更加方便。如果不是处理远程代码,还是推荐使用Eclipse或者其他IDE进行U-Boot开发!
EM
curton 2019-5-4 16:46