Hi at all,
I need created my own uboot image with Angstrom distribution.
I want add some patch to this source uboot, for example this patch:
http://arago-project.org/git/projects/?p=u-boot-am33x.git;a=commit;h=5fdfe4d225485ac6a63b874143f1a784d5394f55
I have used this patch with bitbake and OE.
What are the steps that I must to do?
I have added the patch in this folder:
/sources/meta-ti/recipes-bsp/u-boot/u-boot/2011.09
I have use this command.
MACHINE=beaglebone ./oebb.sh bitbake u-boot
,but I can see the result, where can I looking for it?
Anybody can help me?
Hello,
You’ll need to add your patch to the list within ‘/sources/meta-ti/recipes-bsp/u-boot/u-boot_2011.09.bb’ for it to be applied.
Comment out the ‘INHERIT += “rm_work”’ line from ‘/conf/local.conf’, rebuild, then look in ‘…/setup-scripts/build/tmp-angstrom_v20xx_xx-eglibc/work/beaglebone-angstrom-linux-gnueabi/u-boot-2011.09+git-r30/image/boot/’
When building you’ll be better off calling ‘. ~/.oe/environment-angstromvxxxx.xx’, then ‘bitbake u-boot -c configure’ - this will add your patch, followed by ‘bitbake u-boot -c compile’, which should generate u-boot.img in the above path.
Cheers,
Andrew.