diff options
-rw-r--r-- | meta/classes/image.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 40bd61480e..0885fdb505 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -261,7 +261,7 @@ fakeroot python do_rootfs () { | |||
261 | do_rootfs[dirs] = "${TOPDIR}" | 261 | do_rootfs[dirs] = "${TOPDIR}" |
262 | do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}" | 262 | do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}" |
263 | do_rootfs[umask] = "022" | 263 | do_rootfs[umask] = "022" |
264 | addtask rootfs before do_build after do_prepare_recipe_sysroot | 264 | addtask rootfs after do_prepare_recipe_sysroot |
265 | 265 | ||
266 | fakeroot python do_image () { | 266 | fakeroot python do_image () { |
267 | from oe.utils import execute_pre_post_process | 267 | from oe.utils import execute_pre_post_process |
@@ -272,7 +272,7 @@ fakeroot python do_image () { | |||
272 | } | 272 | } |
273 | do_image[dirs] = "${TOPDIR}" | 273 | do_image[dirs] = "${TOPDIR}" |
274 | do_image[umask] = "022" | 274 | do_image[umask] = "022" |
275 | addtask do_image after do_rootfs before do_build | 275 | addtask do_image after do_rootfs |
276 | 276 | ||
277 | fakeroot python do_image_complete () { | 277 | fakeroot python do_image_complete () { |
278 | from oe.utils import execute_pre_post_process | 278 | from oe.utils import execute_pre_post_process |