]> code.ossystems Code Review - openembedded-core.git/commitdiff
initramfs-live-install: Be consistent with grub.
authorLianhao Lu <lianhao.lu@intel.com>
Mon, 5 Sep 2011 06:00:41 +0000 (14:00 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 7 Sep 2011 21:28:33 +0000 (22:28 +0100)
[YOCTO #1428]
Because the underlying grub 0.97 the initramfs-live-install RDEPDNEDS on
only supports 32bit x86 target, set the COMPATIBLE_HOST accordingly.

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb

index c792fe0e058027db74cada93017e30fc7d12ec97..0eeabf1774e2876b51e3e340f9deb6fe552ed81d 100644 (file)
@@ -20,4 +20,5 @@ INHIBIT_DEFAULT_DEPS = "1"
 FILES_${PN} = " /install.sh "
 
 # Alternatives to grub need adding for other arch support
-COMPATIBLE_HOST = "(i.86|x86_64).*-linux"
+# consistent with grub 0.97
+COMPATIBLE_HOST = "i.86.*-linux"