ubuntu 12.04 yocto 最近出現的編譯問題

編譯平臺:ubuntu 12.04

root用戶編譯出現一個root問題

error1:

ERROR:  OE-core's config sanity checker detected a potential misconfiguration.
    Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
    Following is the list of potential problems / advisories:

    Do not use Bitbake as root.

解決方法:

註釋掉yocto-bsp/sources/poky/meta/classes/sanity.bbclass文件裏以下幾句

    #if 0 == os.getuid():
    #    raise_sanity_error("Do not use Bitbake as root.", d)

error2:

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.

ERROR: Logfile of failure stored in: /home/leo/work/imx6/genivi-imx6/build-genivi/tmp/work/x86_64-linux/gnu-config-native/20150728+gitAUTOINC+b576fa87c1-r0/temp/log.do_unpack.3948


解決辦法:

    1. 更新git

     2. 修改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)

     

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章