Thanks, Denys for the Ack and Tom for picking up the patches. Now that they have hit mainline, I would like to request that they get into arago-oe-dev. From the 2010.03-maintenance announcement I'm guessing that means that they need to be backported to 2010.03-maintenance branch first.
I've cherry-picked the following commits (some with fixups) to get a successful build of hello-worldimage with externa-toolchain and Build Configuration: BB_VERSION = "1.10.2" METADATA_BRANCH = "upstream/oe/releases/2011.03-maintenance/features/BenGardiner/backport-ubifs-links" METADATA_REVISION = "64d4245" TARGET_ARCH = "arm" TARGET_OS = "linux-gnueabi" MACHINE = "da850-omapl138-evm" DISTRO = "angstrom" DISTRO_VERSION = "2011.03" TARGET_FPU = "soft" commit 64d42452395f0c02d355516943c8493dc770ade2Author: Denys Dmytriyenko <[email protected]> Date: Thu Mar 3 13:37:19 2011 -0500 toolchain-external.conf: set the default provider for gdbserver Signed-off-by: Denys Dmytriyenko <[email protected]> (cherry picked from commit df59f77a2eb37d9807c6d9167488110e92601d7b) Signed-off-by: Ben Gardiner <[email protected]> conf/distro/include/toolchain-external.inc | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 2641cb6d7e2db1dcd2608bae7d84909915b1f023 Author: Denys Dmytriyenko <[email protected]> Date: Thu Mar 3 13:27:26 2011 -0500 external-toolchain-csl: handle packaging of gdbserver based on PREFERRED_PROVIDER Allow packaging independent copy of specific version of gdbserver with external-toolchain-csl by setting PREFERRED_PROVIDER. E.g. for GPLv2 gdbserver, add these lines to your distro/local.conf: PREFERRED_PROVIDER_gdbserver = "gdbserver" PREFERRED_VERSION_gdbserver = "6.6" Thanks to Ben Gardiner for providing valuable feedback. Signed-off-by: Denys Dmytriyenko <[email protected]> (cherry picked from commit a47c14c83cf97a2c90ee50ec7212ec33bdafb58b) Signed-off-by: Ben Gardiner <[email protected]> recipes/meta/external-toolchain-csl.bb | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) commit 1775a7d2fdc6b7cc242b2b4e9f0a6516edf0ad83 Author: Tom Rini <[email protected]> Date: Wed Mar 2 11:39:48 2011 -0700 external-toolchain-csl: Drop do_stage, add gdbserver Based on work from Noor Ahsan, we merge the important part of do_stage into do_install and then set NATIVE_INSTALL_WORKS. We also add a function for getting the gdb version for packaging up gdbserver and ship that. Signed-off-by: Tom Rini <[email protected]> (cherry picked from commit 207971b244ee6958dab1fb41d6f3cd94ac416b73) Signed-off-by: Ben Gardiner <[email protected]> recipes/meta/external-toolchain-csl.bb | 39 +++++++++++++++++-------------- 1 files changed, 21 insertions(+), 18 deletions(-) commit a96c10d6cff4f8298c43eccd9139dd20d41a4cc8 Author: Ben Gardiner <[email protected]> Date: Wed Mar 2 10:05:14 2011 -0500 external-toolchain-csl: allow linux-libc-headers If PREFERRED_PROVIDER_linux-libc-headers is defined as anything other than external-toolchain-csl then don't PROVIDE, install or stage the linux headers packaged with the CSL toolchain. (Updated by Tom Rini to not modify local.conf.sample yet and to use cp + rm -rf rather than rsync) Signed-off-by: Ben Gardiner <[email protected]> Tested-by: Andrea Galbusera <[email protected]> Signed-off-by: Tom Rini <[email protected]> (cherry picked from commit 3116ad58e507c6e5dc7b7249f521c395db586b9f) Signed-off-by: Ben Gardiner <[email protected]> recipes/meta/external-toolchain-csl.bb | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) commit 925e89153270dc162957903bc793ecbfdbf6ec05 Author: Ben Gardiner <[email protected]> Date: Wed Mar 2 10:05:13 2011 -0500 external-toolchain: allow override of linux-libc-headers provider only set PREFERRED_PROVIDER_linux-libc-headers if it is not already assigned a value. Signed-off-by: Ben Gardiner <[email protected]> Tested-by: Andrea Galbusera <[email protected]> Signed-off-by: Tom Rini <[email protected]> (cherry picked from commit 829ea5110bc82f71a225f168bcb6a9a327b1b5c8) Signed-off-by: Ben Gardiner <[email protected]> conf/distro/include/toolchain-external.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 5156e672c781e8a44e02f9eb4351cb8c476c3a60 Author: Ben Gardiner <[email protected]> Date: Tue Mar 15 14:13:55 2011 -0400 bitbake.conf: use .ubifs.img extension in IMAGE_CMD_ubi The current IMAGE_CMD_ubi creates an interim image with a .rootfs.ubifs extension. The ubifs image created is not considered a valid rootfs without a UBI container. Change the filename of the iterim ubifs image used by IMAGE_CMD_ubi to .ubifs.img to match the IMAGE_CMD_ubifs command. Signed-off-by: Ben Gardiner <[email protected]> Acked-by: Denys Dmytriyenko <[email protected]> Signed-off-by: Tom Rini <[email protected]> (backported from commit 7308e68fc26cdbffa08d311a2319c8d1c3b2805f -- some changes were needed since commit 312b42bcf2cc9b11266ba497ade68e8ddabb3007 bitbake.conf: add XZ_INTEGRITY_CHECK and LZMA_COMPRESSION_LEVEL variables has not been applied to 2011.03-maintenance) Signed-off-by: Ben Gardiner <[email protected]> conf/bitbake.conf | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 08cb84d24fdd8e9d40a5db836b98a3706187c7c6 Author: Ben Gardiner <[email protected]> Date: Tue Mar 15 14:13:54 2011 -0400 image.bbclass: add link to .rootfs.<type> or .<type>.img The current image link-creation code will unconditionaly create a link from .<type> pointing to the .rootfs.<type> output. This is not compatible with the UBIFS images produced which have .<type>.img extension since they are not considered to be valid rootfs images when they are not included in a UBI container. Check for existence of the link target .rootfs.<type> before creating the link and fallback to a check for the .<type>.img target after that. Signed-off-by: Ben Gardiner <[email protected]> Acked-by: Denys Dmytriyenko <[email protected]> Signed-off-by: Tom Rini <[email protected]> (cherry picked from commit cfde49e8d0f1cf09d589910f1a342849db148519) Signed-off-by: Ben Gardiner <[email protected]> classes/image.bbclass | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) It seems a little strange to me to re-post the patches to the list; so I'm asking first. Please let me know if I'm on the right track for the procedure. Best Regards, Ben Gardiner --- Nanometrics Inc. http://www.nanometrics.ca _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
