• ERROR: gnu-config-native-20150728+gitAUTOINC+b576fa87c1-r0 do_unpack: Function failed: Fetcher failure: Fetch command failed with exit code 128, output: fatal: the '--set-upstream' option is no longer


    /**********************************************************************
     *    ERROR: gnu-config-native-20150728+gitAUTOINC+b576fa87c1-r0 do_unpack: Function failed: Fetcher failure: Fetch command failed with exit code 128, output: fatal: the '--set-upstream' option is no longer supported. Please use '--track' or '--set-upstream-to' instead.
     * 说明:
     *     在Ubuntu 18.04上编译Yocto,出现的git访问的问题。
     *
     *                                2018-6-13 深圳 宝安西乡 曾剑锋
     *********************************************************************/
    
    一、参考文档:
        1. ubuntu 12.04 yocto 最近出现的编译问题
            https://blog.csdn.net/ming_l1/article/details/79362370
    
    二、解决方法:
        1. sources/poky/bitbake/lib/bb/fetch2/git.py
            runfetchcmd("%s branch --set-upstream %s origin/%s" % (ud.basecmd, branchname, 
                        branchname), d)
            to
            runfetchcmd("%s branch --set-upstream-to origin/%s" % (ud.basecmd, 
                        branchname), d)
  • 相关阅读:
    覆盖率测试工具gcov的前端工具_LCOV
    LTE切换与TAU问题
    LTE 切换过程中的数据切换
    TCP数据流稳定性--TCP分片,重组及乱序
    【Android
    【Android
    【Android
    【RN
    【RN
    【RN
  • 原文地址:https://www.cnblogs.com/zengjfgit/p/9177572.html
Copyright © 2020-2023  润新知