diff options
author | Saul Wold <sgw@linux.intel.com> | 2017-09-25 17:52:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-26 11:05:01 +0100 |
commit | f0f2b2369e2883b50907c4f7e2973dfa23b765a5 (patch) | |
tree | 36af1151534d8364fa6fad6b47d721fad7e59df9 | |
parent | fe31dcd2a1d0aa649d1d16b60f9c74ae835e63ce (diff) | |
download | poky-f0f2b2369e2883b50907c4f7e2973dfa23b765a5.tar.gz |
wic: remove systemd-boot for x32
Currently systemd-boot actually incorporates libgcc, since the
systemd-boot needs to be built with 64bit instructions it can not
use the x32 based libgcc.
Use the new override to ensure it gets overriden, linux-gnux32 could
not be used because x86-64 has higher priority.
(From OE-Core rev: 6046b9a3d76738c459ad76f5296e7b0a54c0b2e0)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/image_types_wic.bbclass | 1 | ||||
-rw-r--r-- | meta/recipes-core/meta/wic-tools.bb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/image_types_wic.bbclass b/meta/classes/image_types_wic.bbclass index e60dca7237..222ae00433 100644 --- a/meta/classes/image_types_wic.bbclass +++ b/meta/classes/image_types_wic.bbclass | |||
@@ -45,6 +45,7 @@ WKS_FILE_DEPENDS_DEFAULT = "syslinux-native bmap-tools-native cdrtools-native bt | |||
45 | WKS_FILE_DEPENDS_BOOTLOADERS = "" | 45 | WKS_FILE_DEPENDS_BOOTLOADERS = "" |
46 | WKS_FILE_DEPENDS_BOOTLOADERS_x86 = "syslinux grub-efi systemd-boot" | 46 | WKS_FILE_DEPENDS_BOOTLOADERS_x86 = "syslinux grub-efi systemd-boot" |
47 | WKS_FILE_DEPENDS_BOOTLOADERS_x86-64 = "syslinux grub-efi systemd-boot" | 47 | WKS_FILE_DEPENDS_BOOTLOADERS_x86-64 = "syslinux grub-efi systemd-boot" |
48 | WKS_FILE_DEPENDS_BOOTLOADERS_x86-x32 = "syslinux grub-efi" | ||
48 | 49 | ||
49 | WKS_FILE_DEPENDS ??= "${WKS_FILE_DEPENDS_DEFAULT} ${WKS_FILE_DEPENDS_BOOTLOADERS}" | 50 | WKS_FILE_DEPENDS ??= "${WKS_FILE_DEPENDS_DEFAULT} ${WKS_FILE_DEPENDS_BOOTLOADERS}" |
50 | 51 | ||
diff --git a/meta/recipes-core/meta/wic-tools.bb b/meta/recipes-core/meta/wic-tools.bb index 57dd37a440..09eb409e87 100644 --- a/meta/recipes-core/meta/wic-tools.bb +++ b/meta/recipes-core/meta/wic-tools.bb | |||
@@ -10,6 +10,7 @@ DEPENDS = "\ | |||
10 | " | 10 | " |
11 | DEPENDS_append_x86 = " syslinux grub-efi systemd-boot" | 11 | DEPENDS_append_x86 = " syslinux grub-efi systemd-boot" |
12 | DEPENDS_append_x86-64 = " syslinux grub-efi systemd-boot" | 12 | DEPENDS_append_x86-64 = " syslinux grub-efi systemd-boot" |
13 | DEPENDS_append_x86-x32 = " syslinux grub-efi" | ||
13 | 14 | ||
14 | INHIBIT_DEFAULT_DEPS = "1" | 15 | INHIBIT_DEFAULT_DEPS = "1" |
15 | 16 | ||