diff options
author | Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com> | 2018-01-11 22:55:23 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-13 10:15:20 +0000 |
commit | 52c25b03ec3845173ff1b5d1e3dfdb3b806e1136 (patch) | |
tree | c7718fcef6ce29c7c0231a1cfd3c0c0d603d8cd5 | |
parent | 422e16fae3a6fa475d663bb8e4fab475900c7a65 (diff) | |
download | poky-52c25b03ec3845173ff1b5d1e3dfdb3b806e1136.tar.gz |
classes/populate_sdk_ext: support wic in eSDK
Make 'wic' image creation tool/command available in eSDK
environment. This would allow eSDK users to manipulate
images within eSDK environment.
[YOCTO #12177]
(From OE-Core rev: 90df6758a9f8753c646b129aa912e3849bf4c987)
Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index eabc365300..4f7100dd7e 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -533,7 +533,7 @@ def get_sdk_required_utilities(buildtools_fn, d): | |||
533 | 533 | ||
534 | install_tools() { | 534 | install_tools() { |
535 | install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk} | 535 | install -d ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk} |
536 | scripts="devtool recipetool oe-find-native-sysroot runqemu*" | 536 | scripts="devtool recipetool oe-find-native-sysroot runqemu* wic" |
537 | for script in $scripts; do | 537 | for script in $scripts; do |
538 | for scriptfn in `find ${SDK_OUTPUT}/${SDKPATH}/${scriptrelpath} -maxdepth 1 -executable -name "$script"`; do | 538 | for scriptfn in `find ${SDK_OUTPUT}/${SDKPATH}/${scriptrelpath} -maxdepth 1 -executable -name "$script"`; do |
539 | lnr ${scriptfn} ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/`basename $scriptfn` | 539 | lnr ${scriptfn} ${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/`basename $scriptfn` |