]> code.ossystems Code Review - openembedded-core.git/commitdiff
initramfs-live-install: comment out allarch inherit to resolve no provider
authorTom Zanussi <tom.zanussi@intel.com>
Wed, 8 Jun 2011 13:48:11 +0000 (08:48 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 9 Jun 2011 14:37:24 +0000 (15:37 +0100)
initramfs-live-install is only compatible with i.86|x86_64 so
shouldn't inherit 'allarch'.  This comments it out.

More specifically, commit 52295fa3deef3b0374b99829626d524cefae6001
(Improve handling of 'all' architecture recipes and their interaction
with sstate) sets TARGET_ARCH which due to the COMPATIBLE_HOST setting
in the recipe causes it to be skipped and gives the following error
for any -live build:

NOTE: Resolving any missing task queue dependencies
NOTE: Runtime target 'initramfs-live-install' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['initramfs-live-install']
ERROR: Required build target 'core-image-sato-live' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-sato-live', 'core-ima\
ge-minimal-initramfs', 'initramfs-live-install']
ERROR: Nothing RPROVIDES 'initramfs-live-install'

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Commented out with explaination instead of remove

Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb

index fdda71819f7146ebb5208bd55e251e3fc04afa8c..c92ee3101d5de9b75aa926489ccad7e7871abacd 100644 (file)
@@ -11,7 +11,10 @@ do_install() {
         install -m 0755 ${WORKDIR}/init-install.sh ${D}/install.sh
 }
 
-inherit allarch
+# While this package maybe an allarch due to it being a 
+# simple script, reality is that it is Host specific based
+# on the COMPATIBLE_HOST below, which needs to take precedence
+#inherit allarch
 
 FILES_${PN} = " /install.sh "