diff options
author | Phil Blundell <philb@gnu.org> | 2004-07-31 14:02:15 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-07-31 14:02:15 +0000 |
commit | bef3cea798c5b94cf1cbda5a2838d63827772289 (patch) | |
tree | 1282b7c19ff8c41de3806505a5d9499feaaa9d50 /classes/rootfs_ipk.oeclass | |
parent | 5df2f8f2e4d2a4a29cb008e90eeea4c4620ef01f (diff) |
implement image_ipk.oeclass on top of rootfs_ipk.oeclass
BKrev: 410ba667SYYICUIFHnePaXNv2VbH_A
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 |