diff options
| -rw-r--r-- | meta/classes/image.bbclass | 4 | ||||
| -rw-r--r-- | meta/lib/oe/rootfs.py | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 2b0ce4a988..eb192057c2 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
| @@ -252,8 +252,8 @@ fakeroot python do_rootfs () { | |||
| 252 | 252 | ||
| 253 | progress_reporter.finish() | 253 | progress_reporter.finish() |
| 254 | } | 254 | } |
| 255 | do_rootfs[dirs] = "${TOPDIR}" | 255 | do_rootfs[dirs] = "${IMAGE_ROOTFS} ${IMGDEPLOYDIR} ${TOPDIR}" |
| 256 | do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}" | 256 | do_rootfs[cleandirs] += "${IMAGE_ROOTFS} ${IMGDEPLOYDIR} ${S}" |
| 257 | do_rootfs[file-checksums] += "${POSTINST_INTERCEPT_CHECKSUMS}" | 257 | do_rootfs[file-checksums] += "${POSTINST_INTERCEPT_CHECKSUMS}" |
| 258 | addtask rootfs after do_prepare_recipe_sysroot | 258 | addtask rootfs after do_prepare_recipe_sysroot |
| 259 | 259 | ||
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index b0dd625539..98cf3f244d 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
| @@ -190,10 +190,6 @@ class Rootfs(object, metaclass=ABCMeta): | |||
| 190 | post_process_cmds = self.d.getVar("ROOTFS_POSTPROCESS_COMMAND") | 190 | post_process_cmds = self.d.getVar("ROOTFS_POSTPROCESS_COMMAND") |
| 191 | rootfs_post_install_cmds = self.d.getVar('ROOTFS_POSTINSTALL_COMMAND') | 191 | rootfs_post_install_cmds = self.d.getVar('ROOTFS_POSTINSTALL_COMMAND') |
| 192 | 192 | ||
| 193 | bb.utils.mkdirhier(self.image_rootfs) | ||
| 194 | |||
| 195 | bb.utils.mkdirhier(self.deploydir) | ||
| 196 | |||
| 197 | execute_pre_post_process(self.d, pre_process_cmds) | 193 | execute_pre_post_process(self.d, pre_process_cmds) |
| 198 | 194 | ||
| 199 | if self.progress_reporter: | 195 | if self.progress_reporter: |
