diff options
| author | Tom Zanussi <tom.zanussi@intel.com> | 2011-06-08 08:48:11 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-09 15:48:27 +0100 |
| commit | 10cf515710df3baea8397a4dc86ad4c44a239bfd (patch) | |
| tree | dd7896cc32582c0d4fd557a0c28d68a618a9c510 /meta | |
| parent | d2a9470342bb67fc8b6ca288e313ea12979a9604 (diff) | |
| download | poky-10cf515710df3baea8397a4dc86ad4c44a239bfd.tar.gz | |
initramfs-live-install: comment out allarch inherit to resolve no provider
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'
(From OE-Core rev: e576e4aa91fc1608f706a341088f9a7b9a21cd2a)
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb index fdda71819f..c92ee3101d 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb | |||
| @@ -11,7 +11,10 @@ do_install() { | |||
| 11 | install -m 0755 ${WORKDIR}/init-install.sh ${D}/install.sh | 11 | install -m 0755 ${WORKDIR}/init-install.sh ${D}/install.sh |
| 12 | } | 12 | } |
| 13 | 13 | ||
| 14 | inherit allarch | 14 | # While this package maybe an allarch due to it being a |
| 15 | # simple script, reality is that it is Host specific based | ||
| 16 | # on the COMPATIBLE_HOST below, which needs to take precedence | ||
| 17 | #inherit allarch | ||
| 15 | 18 | ||
| 16 | FILES_${PN} = " /install.sh " | 19 | FILES_${PN} = " /install.sh " |
| 17 | 20 | ||
