diff options
-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" |