summaryrefslogtreecommitdiffstats
path: root/meta/classes/package_ipk.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-19 16:49:00 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-20 11:53:49 +0000
commitbc7162a46cebfec3896f95081bc2f635efa509f2 (patch)
tree185862333fc0c9980c20fae590dd6f953310960c /meta/classes/package_ipk.bbclass
parenteeb30764e9ac712dd2512aedecb6b5e53eafd9c2 (diff)
downloadpoky-bc7162a46cebfec3896f95081bc2f635efa509f2.tar.gz
classes/package*: Add support for PACKAGE_WRITE_DEPS
Add a new variable to allow markup of postinstall (and preinst) script dependnecies on native/cross tools. If your postinstall can execute at rootfs creation time rather than on target but depends on a native tool in order to execute, you need to list that tool in PACKAGE_WRITE_DEPENDS. (From OE-Core rev: aff8ca95b8303a4a2a5600c0d8ec0a50ad677258) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r--meta/classes/package_ipk.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass
index 7018a600a9..039b6ab69b 100644
--- a/meta/classes/package_ipk.bbclass
+++ b/meta/classes/package_ipk.bbclass
@@ -291,6 +291,7 @@ python do_package_write_ipk () {
291do_package_write_ipk[dirs] = "${PKGWRITEDIRIPK}" 291do_package_write_ipk[dirs] = "${PKGWRITEDIRIPK}"
292do_package_write_ipk[cleandirs] = "${PKGWRITEDIRIPK}" 292do_package_write_ipk[cleandirs] = "${PKGWRITEDIRIPK}"
293do_package_write_ipk[umask] = "022" 293do_package_write_ipk[umask] = "022"
294do_package_write_ipk[depends] += "${@oe.utils.build_depends_string(d.getVar('PACKAGE_WRITE_DEPS'), 'do_populate_sysroot')}"
294addtask package_write_ipk after do_packagedata do_package 295addtask package_write_ipk after do_packagedata do_package
295 296
296PACKAGEINDEXDEPS += "opkg-utils-native:do_populate_sysroot" 297PACKAGEINDEXDEPS += "opkg-utils-native:do_populate_sysroot"