diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-07-14 15:33:00 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-17 14:01:37 +0100 |
commit | b6dd87f2a85300c1f621b4195e3f0357091bec33 (patch) | |
tree | 7ad7d48e1d99ce8bd91845f3efa727e066404e67 /scripts/lib/wic/misc.py | |
parent | 223d3b44c08c3522ef7c1d2f67f170e819b27c99 (diff) | |
download | poky-b6dd87f2a85300c1f621b4195e3f0357091bec33.tar.gz |
wic: get rid of using wic-tools
At the moment, when building images with IMAGE_FSTYPES=wic one ends up
depending on wic-tools and thus syslinux and grub-efi even when not
using those at all. Ideally, building an image with wic should only
build the tools and components really needed.
The problem is that "wic-tools" is needed also for the manual
invocations of wic, in which case everything that might be needed has to
be built in advance.
Replaced dependency on wic-tools with dependency to a much shorter set
of tools that wic uses almost for any image: 'parted', 'gptfdisk',
'dosfstools' and 'mtools'.
[YOCTO #11552]
(From OE-Core rev: 33ca15b94dbe7204c556c4b5526edd529f6d85f4)
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>
Diffstat (limited to 'scripts/lib/wic/misc.py')
-rw-r--r-- | scripts/lib/wic/misc.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/lib/wic/misc.py b/scripts/lib/wic/misc.py index 3ebae0a6e0..4e07cd659c 100644 --- a/scripts/lib/wic/misc.py +++ b/scripts/lib/wic/misc.py | |||
@@ -139,14 +139,11 @@ def exec_native_cmd(cmd_and_args, native_sysroot, pseudo=""): | |||
139 | if pseudo: | 139 | if pseudo: |
140 | cmd_and_args = pseudo + cmd_and_args | 140 | cmd_and_args = pseudo + cmd_and_args |
141 | 141 | ||
142 | wtools_sysroot = get_bitbake_var("RECIPE_SYSROOT_NATIVE", "wic-tools") | 142 | native_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin" % \ |
143 | (native_sysroot, native_sysroot, native_sysroot) | ||
143 | 144 | ||
144 | native_paths = \ | ||
145 | "%s/sbin:%s/usr/sbin:%s/usr/bin:%s/sbin:%s/usr/sbin:%s/usr/bin" % \ | ||
146 | (wtools_sysroot, wtools_sysroot, wtools_sysroot, | ||
147 | native_sysroot, native_sysroot, native_sysroot) | ||
148 | native_cmd_and_args = "export PATH=%s:$PATH;%s" % \ | 145 | native_cmd_and_args = "export PATH=%s:$PATH;%s" % \ |
149 | (native_paths, cmd_and_args) | 146 | (native_paths, cmd_and_args) |
150 | logger.debug("exec_native_cmd: %s", native_cmd_and_args) | 147 | logger.debug("exec_native_cmd: %s", native_cmd_and_args) |
151 | 148 | ||
152 | # If the command isn't in the native sysroot say we failed. | 149 | # If the command isn't in the native sysroot say we failed. |