diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/rootfs_ipk.bbclass | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass index 6cdd8f6062..46e8d60918 100644 --- a/meta/classes/rootfs_ipk.bbclass +++ b/meta/classes/rootfs_ipk.bbclass | |||
@@ -97,8 +97,18 @@ fakeroot rootfs_ipk_do_rootfs () { | |||
97 | if ${@base_contains("IMAGE_FEATURES", "package-management", "false", "true", d)}; then | 97 | if ${@base_contains("IMAGE_FEATURES", "package-management", "false", "true", d)}; then |
98 | if ! grep Status:.install.ok.unpacked ${STATUS}; then | 98 | if ! grep Status:.install.ok.unpacked ${STATUS}; then |
99 | # All packages were successfully configured. | 99 | # All packages were successfully configured. |
100 | # update-rc.d, base-passwd are no further use, remove them now | 100 | # update-rc.d, base-passwd, run-postinsts are no further use, remove them now |
101 | opkg-cl ${IPKG_ARGS} --force-depends remove update-rc.d base-passwd || true | 101 | remove_run_postinsts=false |
102 | if [ -e ${IMAGE_ROOTFS}${sysconfdir}/init.d/run-postinsts ]; then | ||
103 | remove_run_postinsts=true | ||
104 | fi | ||
105 | opkg-cl ${IPKG_ARGS} --force-depends remove update-rc.d base-passwd ${ROOTFS_BOOTSTRAP_INSTALL} || true | ||
106 | |||
107 | # Need to remove rc.d files for run-postinsts by hand since opkg won't | ||
108 | # call postrm scripts in offline root mode. | ||
109 | if $remove_run_postinsts; then | ||
110 | update-rc.d -f -r ${IMAGE_ROOTFS} run-postinsts remove | ||
111 | fi | ||
102 | 112 | ||
103 | # Also delete the status files | 113 | # Also delete the status files |
104 | rm -rf ${IMAGE_ROOTFS}${opkglibdir} | 114 | rm -rf ${IMAGE_ROOTFS}${opkglibdir} |