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 15:30:59 +0100 |
commit | 540cf355599e555615ed9684c3b480463588eb78 (patch) | |
tree | 3a9f02d294bb00dfc753d74e55b269a5bf2626d1 /meta/classes/package_ipk.bbclass | |
parent | 805add18e7b917aaef61c82c0b5f2e9682af1d0d (diff) | |
download | openembedded-core-540cf355599e555615ed9684c3b480463588eb78.tar.gz openembedded-core-540cf355599e555615ed9684c3b480463588eb78.tar.bz2 openembedded-core-540cf355599e555615ed9684c3b480463588eb78.zip |
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.
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() { local package_multilib="${INSTALL_PACKAGES_MULTILIB_IPK}" mkdir -p ${target_rootfs}${OPKGLIBDIR}/opkg + touch ${target_rootfs}${OPKGLIBDIR}/opkg/status local ipkg_args="${OPKG_ARGS}" |