diff options
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 6 |
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 | ||
14 | LICENSE = "MIT" | 14 | LICENSE = "MIT" |
15 | PACKAGES = "" | 15 | PACKAGES = "" |
16 | DEPENDS += "${MLPREFIX}qemuwrapper-cross ${MLPREFIX}depmodwrapper-cross" | 16 | DEPENDS += "${MLPREFIX}qemuwrapper-cross depmodwrapper-cross" |
17 | RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL}" | 17 | RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL}" |
18 | RRECOMMENDS += "${PACKAGE_INSTALL_ATTEMPTONLY}" | 18 | RRECOMMENDS += "${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 () { | |||
274 | do_rootfs[dirs] = "${TOPDIR}" | 274 | do_rootfs[dirs] = "${TOPDIR}" |
275 | do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}" | 275 | do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}" |
276 | do_rootfs[umask] = "022" | 276 | do_rootfs[umask] = "022" |
277 | addtask rootfs before do_build | 277 | addtask rootfs before do_build after do_prepare_recipe_sysroot |
278 | 278 | ||
279 | fakeroot python do_image () { | 279 | fakeroot python do_image () { |
280 | from oe.utils import execute_pre_post_process | 280 | from oe.utils import execute_pre_post_process |