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

后端 未结 5 1317
旧时难觅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:35

    No, I don't believe such a mechanism exists. But you could do something like

    "echo "foo = \"bar\"" >local.conf
    

    Not sure that will solve your particular problem or not. Also, there is a mechanism for local site-wide variables: if you have a 'site.conf' file in your home directory under a directory called .oe, bitbake will read that and apply those variables to the global environment for every build. Maybe that would help? You didn't specify exactly what problem you are trying to solve, there might be better ways.

提交回复
热议问题