summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe')
-rw-r--r--meta/lib/oe/image.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/meta/lib/oe/image.py b/meta/lib/oe/image.py
index 52ac1e752c..b2b002b190 100644
--- a/meta/lib/oe/image.py
+++ b/meta/lib/oe/image.py
@@ -351,12 +351,6 @@ class Image(ImageDepGraph):
351 351
352 def create(self): 352 def create(self):
353 bb.note("###### Generate images #######") 353 bb.note("###### Generate images #######")
354 pre_process_cmds = self.d.getVar("IMAGE_PREPROCESS_COMMAND", True)
355 post_process_cmds = self.d.getVar("IMAGE_POSTPROCESS_COMMAND", True)
356
357 execute_pre_post_process(self.d, pre_process_cmds)
358
359 self._remove_old_symlinks()
360 354
361 image_cmd_groups = self._get_imagecmds() 355 image_cmd_groups = self._get_imagecmds()
362 356
@@ -406,9 +400,6 @@ class Image(ImageDepGraph):
406 bb.note("Creating symlinks for %s image ..." % image_type) 400 bb.note("Creating symlinks for %s image ..." % image_type)
407 self._create_symlinks(subimages) 401 self._create_symlinks(subimages)
408 402
409 execute_pre_post_process(self.d, post_process_cmds)
410
411
412def create_image(d): 403def create_image(d):
413 Image(d).create() 404 Image(d).create()
414 405