diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 13:29:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 21:12:23 +0100 |
commit | cbccd7974d44c38f7257f9bd71909505a0d1bb9f (patch) | |
tree | 8b693dd61b2dda7090f7b73f5183e3968c99a594 /meta/classes | |
parent | 701c3ce3c6a958b2b2c7b2bde7e070707a0f973a (diff) | |
download | poky-cbccd7974d44c38f7257f9bd71909505a0d1bb9f.tar.gz |
package_ipk: Ensure the status file exists
The postinstall for the opkg run-postinst hook checks for the existence of this
file. We therefore ensure it always exists during image generation.
(From OE-Core rev: 540cf355599e555615ed9684c3b480463588eb78)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index d003ae7e81..5873f71205 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass | |||
@@ -85,6 +85,7 @@ package_install_internal_ipk() { | |||
85 | local package_multilib="${INSTALL_PACKAGES_MULTILIB_IPK}" | 85 | local package_multilib="${INSTALL_PACKAGES_MULTILIB_IPK}" |
86 | 86 | ||
87 | mkdir -p ${target_rootfs}${OPKGLIBDIR}/opkg | 87 | mkdir -p ${target_rootfs}${OPKGLIBDIR}/opkg |
88 | touch ${target_rootfs}${OPKGLIBDIR}/opkg/status | ||
88 | 89 | ||
89 | local ipkg_args="${OPKG_ARGS}" | 90 | local ipkg_args="${OPKG_ARGS}" |
90 | 91 | ||