安装支持linux的第三方库和mkimage工具,做好移植前的准备工作。
编译linux内核之前,需要先在 ubuntu上安装“lzop库”和“libssl-dev库”,否则内核编译会失败。
mkimage工具会在zImage镜像文件的前面添加0x40个字节的头部信息,就可以得到uImage镜像文件。因此,需要安装mkimage工具。
1、打开终端
输入“sudo apt-get update回车”,在安装前,先更新
输入密码“123456回车”
2、输入“sudo apt-get install lzop回车”,安装支持linux的第三方库
3、输入“sudo apt-get install libssl-dev回车”,安装支持linux的第三方库
4、输入“sudo apt-get install u-boot-tools回车”,安装mkimage工具;
5、重启虚拟机,使安装文件生效。