summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 6b0864913b..5fc7385d79 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -13,7 +13,7 @@ inherit gzipnative
13 13
14LICENSE = "MIT" 14LICENSE = "MIT"
15PACKAGES = "" 15PACKAGES = ""
16DEPENDS += "${MLPREFIX}qemuwrapper-cross ${MLPREFIX}depmodwrapper-cross" 16DEPENDS += "${MLPREFIX}qemuwrapper-cross depmodwrapper-cross"
17RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL}" 17RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL}"
18RRECOMMENDS += "${PACKAGE_INSTALL_ATTEMPTONLY}" 18RRECOMMENDS += "${PACKAGE_INSTALL_ATTEMPTONLY}"
19 19
@@ -164,7 +164,7 @@ python () {
164 deps = "" 164 deps = ""
165 for dep in (d.getVar('EXTRA_IMAGEDEPENDS') or "").split(): 165 for dep in (d.getVar('EXTRA_IMAGEDEPENDS') or "").split():
166 deps += " %s:do_populate_sysroot" % dep 166 deps += " %s:do_populate_sysroot" % dep
167 d.appendVarFlag('do_build', 'depends', deps) 167 d.appendVarFlag('do_image_complete', 'depends', deps)
168 168
169 #process IMAGE_FEATURES, we must do this before runtime_mapping_rename 169 #process IMAGE_FEATURES, we must do this before runtime_mapping_rename
170 #Check for replaces image features 170 #Check for replaces image features
@@ -274,7 +274,7 @@ fakeroot python do_rootfs () {
274do_rootfs[dirs] = "${TOPDIR}" 274do_rootfs[dirs] = "${TOPDIR}"
275do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}" 275do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}"
276do_rootfs[umask] = "022" 276do_rootfs[umask] = "022"
277addtask rootfs before do_build 277addtask rootfs before do_build after do_prepare_recipe_sysroot
278 278
279fakeroot python do_image () { 279fakeroot python do_image () {
280 from oe.utils import execute_pre_post_process 280 from oe.utils import execute_pre_post_process