summaryrefslogtreecommitdiffstats
path: root/scripts/lib
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2022-08-25 14:37:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-31 16:54:17 +0100
commit8191b791234ee395e700c2eb899e664224aaa423 (patch)
treed96f10dfb930d386507111d81717fbe289d42abc /scripts/lib
parent79668237c93455c0a9930c04ad2f2fcde13e6bdd (diff)
downloadpoky-8191b791234ee395e700c2eb899e664224aaa423.tar.gz
wic: add target tools to PATH when executing native commands
We might want to run a cross tool, such as objcopy, in wic. These are in a TARGET_SYS/ subdirectory under /usr/bin, so add that directory to the search path too. (From OE-Core rev: c523549141e5c31edc75281f581d97867b7d251d) (From OE-Core rev: f8e0512503410ca5137fcf114fbffb52aa98be07) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r--scripts/lib/wic/misc.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/lib/wic/misc.py b/scripts/lib/wic/misc.py
index 3e11822996..a8aab6c524 100644
--- a/scripts/lib/wic/misc.py
+++ b/scripts/lib/wic/misc.py
@@ -140,11 +140,12 @@ def exec_native_cmd(cmd_and_args, native_sysroot, pseudo=""):
140 cmd_and_args = pseudo + cmd_and_args 140 cmd_and_args = pseudo + cmd_and_args
141 141
142 hosttools_dir = get_bitbake_var("HOSTTOOLS_DIR") 142 hosttools_dir = get_bitbake_var("HOSTTOOLS_DIR")
143 target_sys = get_bitbake_var("TARGET_SYS")
143 144
144 native_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin:%s/bin:%s" % \ 145 native_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin:%s/usr/bin/%s:%s/bin:%s" % \
145 (native_sysroot, native_sysroot, 146 (native_sysroot, native_sysroot,
146 native_sysroot, native_sysroot, 147 native_sysroot, native_sysroot, target_sys,
147 hosttools_dir) 148 native_sysroot, hosttools_dir)
148 149
149 native_cmd_and_args = "export PATH=%s:$PATH;%s" % \ 150 native_cmd_and_args = "export PATH=%s:$PATH;%s" % \
150 (native_paths, cmd_and_args) 151 (native_paths, cmd_and_args)