-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
conf: Refactor template conf files #12
base: krogoth
Are you sure you want to change the base?
Conversation
Renamed templates files to be aligned with TEMPLATECONF. This change will simplify oe-init-build-env initialization. e.g. TEMPLATECONF=meta-bbb/conf . ./oe-init-build-env ../build_bbb/ Signed-off-by: Lucian Zala <[email protected]>
Hi, If you consider this change you may update also the tutorial webpage. Thanks! |
Can you elaborate on what problem this is solving? Your proposal $ cd poky-krogoth versus the way it is now $ . ~/poky-krogoth/oe-init-build-env ~/bbb/build "LucianZala" [email protected] said:
|
It automatically parse and copy .sample bblayers.conf and local.conf to build/conf and prints the available targets. Take a look at poky-krogoth/scripts/oe-setup-builddir script. ##OEROOT##/meta-bbb in bblayers is working only if meta-bbb is cloned in poky-krogoth (I think all the layers should be cloned in poky root directory). lucianz@LinuxMachine:~/work/yocto/poky-krogoth$ TEMPLATECONF=meta-bbb/conf . ./oe-init-build-env ../build_bbb/ You had no conf/bblayers.conf file. This configuration file has therefore been The Yocto Project has extensive documentation about OE including a reference For more information about OpenEmbedded see their website: Shell environment set up for builds.You can now run 'bitbake ' Common targets are: lucianz@LinuxMachine:~/work/yocto/build_bbb$ bitbake console-image |
Hi Lucian, So basically you want these two files renamed so the oe-setup-builddir meta-bbb/conf/bblayer.conf-sample -> meta-bbb/conf/bblayer.conf And a new file added meta-bbb/conf/conf-notes.txt Though I think it would likely be something more like this for meta-bbb scott@fractal:~/bbg/meta-bbb/conf$ cat conf-notes.txt
The other recipes in the meta-bbb/images directory are really just me
I don't agree with this. I have dozens of different boards/projects using the same poky- But this just the way I prefer to work and you can choose differently. Thanks for taking the time to send this. Probably this weekend I will make the changes at the top of this email. I have to fix a bunch of posts on my site as well, so I'll have to wait until Best regards, "LucianZala" [email protected] said:
|
Renamed templates files to be aligned with TEMPLATECONF.
This change will simplify oe-init-build-env initialization.
e.g.
TEMPLATECONF=meta-bbb/conf . ./oe-init-build-env ../build_bbb/
Signed-off-by: Lucian Zala [email protected]