diff options
author | Changqing Li <changqing.li@windriver.com> | 2020-11-25 10:02:48 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2020-12-10 08:33:27 +0800 |
commit | 417bb4b01386d6f83f56ba8cd36b9408761de25e (patch) | |
tree | 0e0161e3f6ffc0e98412f8e20d913f3deda8dab7 /meta/recipes-core | |
parent | 9d67dd5a6363b9fae10784e8056e469ba2ef5735 (diff) | |
download | openembedded-core-contrib-417bb4b01386d6f83f56ba8cd36b9408761de25e.tar.gz |
buildtools-tarball: add wic dependency into extended buildtools
fix below error:
wic ls ./core-image-minimal-intel-x86-64.wic
ERROR: Can't find executable parted
wic depend on some tools like parted/mtools/..., and we have those
tools in native_sysroot. so above problem can be avoided by
run command like wic ls imagename.wic --native-sysroot <path>
but this cannot cover condition that usr don't have build the
image, the image just copy from somewhere.
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c0eda6ec09395f3a04cb80107a3ca33a063b21f8)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/buildtools-extended-tarball.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/buildtools-extended-tarball.bb b/meta/recipes-core/meta/buildtools-extended-tarball.bb index c32d0107c38..08164867548 100644 --- a/meta/recipes-core/meta/buildtools-extended-tarball.bb +++ b/meta/recipes-core/meta/buildtools-extended-tarball.bb @@ -29,6 +29,9 @@ TOOLCHAIN_HOST_TASK += "\ nativesdk-pkgconfig \ nativesdk-glibc-utils \ nativesdk-libxcrypt-dev \ + nativesdk-parted \ + nativesdk-dosfstools \ + nativesdk-gptfdisk \ " TOOLCHAIN_OUTPUTNAME = "${SDK_ARCH}-buildtools-extended-nativesdk-standalone-${DISTRO_VERSION}" |