diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/rm_work.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/rm_work.bbclass b/meta/classes/rm_work.bbclass index a6bd3f719f..0bbc450100 100644 --- a/meta/classes/rm_work.bbclass +++ b/meta/classes/rm_work.bbclass | |||
@@ -64,6 +64,15 @@ do_rm_work () { | |||
64 | mv $i `echo $i | sed -e "s#do_image_complete#do_image_complete_setscene#"` | 64 | mv $i `echo $i | sed -e "s#do_image_complete#do_image_complete_setscene#"` |
65 | i=dummy | 65 | i=dummy |
66 | ;; | 66 | ;; |
67 | *do_image_qa_setscene*) | ||
68 | # Ensure we don't 'stack' setscene extensions to this stamp with the section below | ||
69 | i=dummy | ||
70 | ;; | ||
71 | *do_image_qa*) | ||
72 | # Promote do_image_qa stamps to setscene versions (ahead of *do_image* below) | ||
73 | mv $i `echo $i | sed -e "s#do_image_qa#do_image_qa_setscene#"` | ||
74 | i=dummy | ||
75 | ;; | ||
67 | *do_package_write*|*do_rootfs*|*do_image*|*do_bootimg*|*do_write_qemuboot_conf*|*do_build*) | 76 | *do_package_write*|*do_rootfs*|*do_image*|*do_bootimg*|*do_write_qemuboot_conf*|*do_build*) |
68 | i=dummy | 77 | i=dummy |
69 | ;; | 78 | ;; |