diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-12-03 01:48:06 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-11 17:21:46 +0000 |
commit | 124df4ee35030b5858a89a7cafe9cbf1e5eea043 (patch) | |
tree | bd770d3ddc6c280bb188768b235fe2216f62461a /meta/conf | |
parent | 6c5a52ca8f47388a841eab5e3a7703b38bff3ba7 (diff) | |
download | poky-124df4ee35030b5858a89a7cafe9cbf1e5eea043.tar.gz |
selftest: wic: fix test_qemu
Setting WKS_FILE variable in qemux86-64 made wic test to
use wrong wks file to produce an image and resulted in
test_qemu failure.
Used conditional assignment in qemux86-64 and explicitly
set WKS_FILE in wic testing suite to make the suite to use
wic-image-minimal.wsk. This should fix test_qemu failure.
(From OE-Core rev: 3bca4d18c2712e3b154bacfb917f0a749ebaddeb)
(From OE-Core rev: bda4e3cceda2205a0a5d916ef5b674df560d43f9)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/machine/qemux86-64.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemux86-64.conf b/meta/conf/machine/qemux86-64.conf index 52ec1e0f72..4f30033e51 100644 --- a/meta/conf/machine/qemux86-64.conf +++ b/meta/conf/machine/qemux86-64.conf | |||
@@ -32,5 +32,5 @@ MACHINE_FEATURES += "x86" | |||
32 | 32 | ||
33 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "v86d" | 33 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "v86d" |
34 | 34 | ||
35 | WKS_FILE = "directdisk.wks" | 35 | WKS_FILE ?= "directdisk.wks" |
36 | do_image_wic[depends] += "syslinux:do_build syslinux-native:do_populate_sysroot mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" | 36 | do_image_wic[depends] += "syslinux:do_build syslinux-native:do_populate_sysroot mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" |