diff options
author | Bhabu Bindu <bindu.bhabu@kpit.com> | 2025-03-04 13:46:20 +0530 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-05 06:19:04 -0800 |
commit | 9d003f71a94740ba22840c7f778aa36f8ff7a8cf (patch) | |
tree | 0270ae94557f02a8c254d2ba9407d5af632170c0 | |
parent | fabeeadc6a1cbf1a81fbdb7dc9fa4022c7e5e851 (diff) | |
download | meta-clang-9d003f71a94740ba22840c7f778aa36f8ff7a8cf.tar.gz |
android-tools: Install img2simg and simg2img
Install img2simg and simg2img binaries to enable usage
of img2simg instead of ext2simg if required.
Signed-off-by: Bhabu Bindu <bindu.bhabu@kpit.com>
-rw-r--r-- | dynamic-layers/selinux/android-tools/android-tools_10.0.0.r36.bb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dynamic-layers/selinux/android-tools/android-tools_10.0.0.r36.bb b/dynamic-layers/selinux/android-tools/android-tools_10.0.0.r36.bb index b943a5d..a778b0c 100644 --- a/dynamic-layers/selinux/android-tools/android-tools_10.0.0.r36.bb +++ b/dynamic-layers/selinux/android-tools/android-tools_10.0.0.r36.bb | |||
@@ -205,6 +205,17 @@ do_install() { | |||
205 | install -d ${D}${bindir} | 205 | install -d ${D}${bindir} |
206 | install -m0755 ${B}/mkbootimg/mkbootimg ${D}${bindir} | 206 | install -m0755 ${B}/mkbootimg/mkbootimg ${D}${bindir} |
207 | fi | 207 | fi |
208 | |||
209 | if echo ${TOOLS_TO_BUILD} | grep -q "img2simg" ; then | ||
210 | install -d ${D}${bindir} | ||
211 | install -m0755 ${S}/debian/out/usr/bin/img2simg ${D}${bindir} | ||
212 | fi | ||
213 | |||
214 | if echo ${TOOLS_TO_BUILD} | grep -q "simg2img" ; then | ||
215 | install -d ${D}${bindir} | ||
216 | install -m0755 ${S}/debian/out/usr/bin/simg2img ${D}${bindir} | ||
217 | fi | ||
218 | |||
208 | } | 219 | } |
209 | 220 | ||
210 | PACKAGES += "${PN}-fstools" | 221 | PACKAGES += "${PN}-fstools" |