1.获得at91bootstrap的源代码
在命令窗口中输入:git clone git://github.com/linux4sam/at91bootstrap.git
2.安装完成后在命令行输入:cd at91bootstrap切换路径到at91bootstrap目录下
3.删除已有的配置和产生的文件
在命令行输入 make mrproper 回车
4.进行默认配置,这里假设是要生成从Nand flash引导UBOOT的at91bootstrap
在命令行 输入 make at91sam9x5eknf_uboot_defconfig 回车
5.根据实际情况做进一步配置
输入 make menuconfig 回车
显示如下错误:
unable to find the ncurses libraries or the required header files
这是没有安装ncurses软件包的原因
在命令行输入 sudo apt-get install libncurses* 完成安装ncurses软件包。
重新输入 make menuconfig 回车
根据实际需要进行配置。
6.编译
在命令行输入make 回车就开始编译
编译完成后生成binaries/at91bootstrap.bin
阅读(3675) | 评论(0) | 转发(0) |