Is it possible to pass in command line variables to a bitbake build?

后端 未结 5 1319
旧时难觅i
旧时难觅i 2021-02-04 01:50

I have an OpenEmbedded environment using bitbake to do some builds. I wanted to get something \"interactive\" going on where bitbake would pause and ask for input then continue

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-04 02:32

    you can do:

    export foo="bar"
    export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE foo"
    bitbake oe-myimage
    

提交回复
热议问题