diff options
Diffstat (limited to 'classes/rootfs_ipk.oeclass')
-rw-r--r-- | classes/rootfs_ipk.oeclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/classes/rootfs_ipk.oeclass b/classes/rootfs_ipk.oeclass index 717bef4918..0494969436 100644 --- a/classes/rootfs_ipk.oeclass +++ b/classes/rootfs_ipk.oeclass @@ -17,7 +17,7 @@ IPKG_ARGS = "-f ${T}/ipkg.conf -o ${IMAGE_ROOTFS}" IMAGE_POSTPROCESS_COMMAND ?= "" -fakeroot do_rootfs () { +real_do_rootfs () { set -x rm -rf ${IMAGE_ROOTFS} @@ -65,6 +65,10 @@ EOF ${IMAGE_POSTPROCESS_COMMAND} } +fakeroot do_rootfs () { + real_do_rootfs +} + # set '*' as the rootpassword so the images # can decide if they want it or not |