diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-01-18 18:53:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:05:17 +0000 |
commit | c13943dbf91b3a6be0fda338c743b59763253777 (patch) | |
tree | c3e3f2e3733dd47972b16e77941fc682ff5560f6 /meta | |
parent | 8ba68cc1f7cfb87d7ab68d40d1f6837d06b6faf3 (diff) | |
download | poky-c13943dbf91b3a6be0fda338c743b59763253777.tar.gz |
wic: add wic-tools recipe
This meta recipe is for building tools used by wic.
It allows wic to find tools in recipe specific sysroot as
all tools will be present in wic-tools sysroot.
NOTE: task do_build_sysroot is created to ensure that
sysroot is re-populated when package is built. Otherwise it will
be taken from sstate and sysroot will not be populated.
Generated wic-tools.env file for wic to be able to get values of
wic-tools variables when wic run from bitbake.
Also add dependency to grub-efi
Without grub-efi test_iso_image test case fails with this error:
AssertionError: Command 'wic create mkhybridiso --image-name
core-image-minimal' returned non-zero exit status 1:
Error: Please build grub-efi first
Fixed by adding dependency wic-tools -> grub-efi.
[RP: Added syslinux exclusion for non-IA arches]
(From OE-Core rev: 71066ce21514725428860ca926cc29161f710af6)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/meta/wic-tools.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/wic-tools.bb b/meta/recipes-core/meta/wic-tools.bb new file mode 100644 index 0000000000..0a53b7319e --- /dev/null +++ b/meta/recipes-core/meta/wic-tools.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "A meta recipe to build native tools used by wic." | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | |||
5 | DEPENDS = "parted-native syslinux-native gptfdisk-native dosfstools-native mtools-native bmap-tools-native grub-efi-native cdrtools-native" | ||
6 | DEPENDS_append_x86 = " syslinux grub-efi" | ||
7 | DEPENDS_append_x86-64 = " syslinux grub-efi" | ||
8 | |||
9 | INHIBIT_DEFAULT_DEPS = "1" | ||
10 | inherit nopackages | ||
11 | |||
12 | python do_build_sysroot () { | ||
13 | bb.build.exec_func("extend_recipe_sysroot", d) | ||
14 | |||
15 | # Write environment variables used by wic | ||
16 | # to tmp/sysroots/<machine>/imgdata/wictools.env | ||
17 | outdir = os.path.join(d.getVar('STAGING_DIR'), 'imgdata') | ||
18 | bb.utils.mkdirhier(outdir) | ||
19 | with open(os.path.join(outdir, "wic-tools.env"), 'w') as envf: | ||
20 | for var in ('RECIPE_SYSROOT_NATIVE', 'STAGING_DATADIR', 'STAGING_LIBDIR'): | ||
21 | envf.write('%s="%s"\n' % (var, d.getVar(var).strip())) | ||
22 | |||
23 | } | ||
24 | addtask do_build_sysroot after do_prepare_recipe_sysroot before do_build | ||