• "mkimage" command not found UBoot images will not be built的解决办法


    $make uImage时出现

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

    如果使用make uImage 则能生成由uboot 引导的内核文件, 需要用到uboot/tools/mkimage,可以在/etc/bashrc 文件末加入一下语句:
    export PATH:=$PATH:/usr/src/arm/u-boot-1.1.6/tools
    这样就能直接引用mkimage 命令。

    前提是uboot/tools目录下有mkimage这个工具,需要编译才能生成:

    修改Makefile
    找到
    ifeq($(ARCH),arm)CROSS_COMPILE =
    改成
    ifeq($(ARCH),arm)
    CROSS_COMPILE = arm-softfloat-linux-gnu-

    make distclean
    make config
    make

    生成的工具在uboot的tools里面,把这个mkimage考到/usr/bin下就行了:

    #cp mkimage /usr/bin/mkimage

    或执行命令安装:

    #apt-get install uboot-mkimage

  • 相关阅读:
    flex-direction
    flex-grow
    Push API
    ServiceWorker.state
    Using Service Workers
    Promise.then
    Promise()
    Using promises
    node-rsa
    async.waterfall
  • 原文地址:https://www.cnblogs.com/qinkai/p/2738351.html
Copyright © 2020-2023  润新知