Reputation: 214
I am using Yocto(poky) freescale linux for creating new software. I have compiled my binaries on Poky 1.6 daisy. But to build recipes on this system I can not find bitbake command.
I searched every where on Google but no luck. Can anybody tell me how do i install bitbake in mentioned machine so that I can create rpm package for that machine.
Thanks in advance.
Upvotes: 4
Views: 38826
Reputation: 2392
To start using bitbake
you need to source the "oe-init-build-env" script located into poky/ directory. So you should do something like this:
$ cd /path/to/poky
$ source ./oe-init-build-env
$ bitbake <recipe>
Hope this helps.
Upvotes: 20