diff options
author | Ross Burton <ross@burtonini.com> | 2020-12-10 15:02:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-09 09:17:16 +0000 |
commit | 19e53c5fa6579ffca293e0705b0acb773e02bbd4 (patch) | |
tree | 2062b0d5dec56bb42b0f3e675744d93e439745fd /meta-selftest | |
parent | c8a22527f34347f819accf2128dcc1fea82a03a8 (diff) | |
download | poky-19e53c5fa6579ffca293e0705b0acb773e02bbd4.tar.gz |
wic-image-minimal: only depend on syslinux on x86 targets
Following other examples, only depend on syslinux when targetting x86.
(From OE-Core rev: 4d4b907554ab964e6b68f3d588d398174b5d5459)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c58fcc1379ca5755a5b670f79b75e94370d4943c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/recipes-test/images/wic-image-minimal.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-selftest/recipes-test/images/wic-image-minimal.bb b/meta-selftest/recipes-test/images/wic-image-minimal.bb index e1da203b59..1cb019898d 100644 --- a/meta-selftest/recipes-test/images/wic-image-minimal.bb +++ b/meta-selftest/recipes-test/images/wic-image-minimal.bb | |||
@@ -6,7 +6,10 @@ IMAGE_INSTALL = "packagegroup-core-boot" | |||
6 | 6 | ||
7 | IMAGE_FSTYPES = "wic" | 7 | IMAGE_FSTYPES = "wic" |
8 | 8 | ||
9 | WKS_FILE_DEPENDS = "syslinux syslinux-native dosfstools-native mtools-native gptfdisk-native" | 9 | WKS_FILE_DEPENDS = "dosfstools-native mtools-native gptfdisk-native" |
10 | WKS_FILE_DEPENDS_append_x86 = " syslinux-native syslinux" | ||
11 | WKS_FILE_DEPENDS_append_x86-64 = " syslinux-native syslinux" | ||
12 | WKS_FILE_DEPENDS_append_x86-x32 = " syslinux-native syslinux" | ||
10 | 13 | ||
11 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 14 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
12 | 15 | ||