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:19 +0100 |
commit | 277cae2b2cf9dbaa3208c8730f4aad20740e7bf2 (patch) | |
tree | 2864980bd6dc0a83b5d326b67c3aa467b46a1c15 /meta/classes/package_ipk.bbclass | |
parent | 8e74a9795caea8cc9272965b4ecad8f97f8c4509 (diff) | |
download | poky-277cae2b2cf9dbaa3208c8730f4aad20740e7bf2.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/package_ipk.bbclass')
-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 | ||