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.
bitbake
is atsources/poky/bitbake
. How did you compile poky binaries? bitbake – LPs./poky/scripts/host-prepare.sh
and thensource ./poky/fsl-setup-poky -m mytargetname
... then you will be able to run bitbake (from the build directory once you have usedsource mybuilddir/SOURCE_THIS
). – amigadev