如何创建U-boot镜像?

如何创建U-boot镜像?

我有 U-Boot 源文件和 GCC-4.9.3,我想为 wandboard 创建 U-Boot 映像,我使用以下命令:

export PATH=$PATH:"address of arm-none-eabi"
export CROSS_COMPILE=arm-none-eabi- 
export ARCH=arm
make wandboard_quad_defconfig
make all

它不起作用并给出以下错误:

make: arm-none-eabi-gcc: Command not found
/bin/sh: arm-none-eabi-gcc: command not found
dirname: missing operand

答案1

做:file arm-none-eabi-gcc 如果它说类似的话ELF 32-bit LSB executable,并且您使用的是 64 位机器,则您可能缺少 32 位动态库,请参阅类似的问题关联。除了寻找 32 位库之外,您还可以使用现有的 32 位计算机(如果有的话)。

相关内容