diff options
author | Bill Pittman <bill.pittman@ni.com> | 2022-02-15 16:54:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-08 09:44:28 +0000 |
commit | bf707d4431c83fea0c2a04872a3f966782f7a6d0 (patch) | |
tree | ccd1f5631c9e19c4015695fd98e724578b45c975 | |
parent | 354b44b45a83fec18d30cc429e9963ab330b199f (diff) | |
download | poky-bf707d4431c83fea0c2a04872a3f966782f7a6d0.tar.gz |
wic: Use custom kernel path if provided
If the custom kernel path is provided in options, then
use that path instead of the default path.
(From OE-Core rev: 1068102216a894c467f71f6046fdb37d5577545c)
Signed-off-by: Bill Pittman <bill.pittman@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/wic | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/wic b/scripts/wic index 4bcff8f79c..aee63a45aa 100755 --- a/scripts/wic +++ b/scripts/wic | |||
@@ -159,6 +159,9 @@ def wic_create_subcommand(options, usage_str): | |||
159 | "(Use -e/--image-name to specify it)") | 159 | "(Use -e/--image-name to specify it)") |
160 | native_sysroot = options.native_sysroot | 160 | native_sysroot = options.native_sysroot |
161 | 161 | ||
162 | if options.kernel_dir: | ||
163 | kernel_dir = options.kernel_dir | ||
164 | |||
162 | if not options.vars_dir and (not native_sysroot or not os.path.isdir(native_sysroot)): | 165 | if not options.vars_dir and (not native_sysroot or not os.path.isdir(native_sysroot)): |
163 | logger.info("Building wic-tools...\n") | 166 | logger.info("Building wic-tools...\n") |
164 | subprocess.check_call(["bitbake", "wic-tools"]) | 167 | subprocess.check_call(["bitbake", "wic-tools"]) |