【嵌入式-系统移植】编译uboot内核

发布时间:2024年01月17日

TODO FIXME

编译uboot内核

1. 下载Linux内核源码

2. 安装交叉编译工具链

3. 编译

常见问题

1. 编译kernel提示"mkimage" command not found - U-Boot images will not be built

在使用Ubuntu16.04 64位系统交叉编译Linux内核时提示如下错误:
在这里插入图片描述
出现错误的原因主要是下面:

"mkimage" command not found - U-Boot images will not be built

在交叉编译uImage镜像的时候需要用到"mkimage"工具,因此需要安装相应的工具包,可以使用下面命令进行解决:

sudo apt-get install u-boot-tools

软件工具安装完成后,继续重新交叉编译即可。

2. Error: garbage following instruction – `dmb ish’

/tmp/ccVze6iv.s:916: Error: garbage following instruction – `dmb ish’

编译器问题。更换编译器即可。
sudo apt-get install gcc-arm-linux-gnueabi

安装以上编译器以后,自动在usr/bin下,自动在环境变量中。

在linux的内核源码主目录下linux-4.14.2,vim Makefile
编译内核时,修改编译器:
ARCH ?= arm
CROSS_COMPILE ?= arm-linux-gnueabi-

LOADADDR=0X40007000 表示指定内核的加载地址
保存后执行make uImage LOADADDR=0X40007000
在这里插入图片描述

参考

  1. 编译kernel提示"mkimage" command not found - U-Boot images will not be built
  2. Error: garbage following instruction – `dmb ish’
  3. 【TINY4412】LINUX移植笔记:(1)移植前准备
文章来源:https://blog.csdn.net/qq_34291570/article/details/135650903
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。