summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/image.bbclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 3639aa44f4..4850eed771 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -297,8 +297,11 @@ addtask do_image_complete_setscene
297# IMAGE_QA_COMMANDS += " \ 297# IMAGE_QA_COMMANDS += " \
298# image_check_everything_ok \ 298# image_check_everything_ok \
299# " 299# "
300# This task runs all functions in IMAGE_QA_COMMANDS after the image 300# This task runs all functions in IMAGE_QA_COMMANDS after the rootfs
301# construction has completed in order to validate the resulting image. 301# construction has completed in order to validate the resulting image.
302#
303# The functions should use ${IMAGE_ROOTFS} to find the unpacked rootfs
304# directory, which if QA passes will be the basis for the images.
302fakeroot python do_image_qa () { 305fakeroot python do_image_qa () {
303 from oe.utils import ImageQAFailed 306 from oe.utils import ImageQAFailed
304 307
@@ -320,7 +323,7 @@ fakeroot python do_image_qa () {
320 imgname = d.getVar('IMAGE_NAME') 323 imgname = d.getVar('IMAGE_NAME')
321 bb.fatal("QA errors found whilst validating image: %s\n%s" % (imgname, qamsg)) 324 bb.fatal("QA errors found whilst validating image: %s\n%s" % (imgname, qamsg))
322} 325}
323addtask do_image_qa after do_image_complete before do_build 326addtask do_image_qa after do_rootfs before do_image
324 327
325SSTATETASKS += "do_image_qa" 328SSTATETASKS += "do_image_qa"
326SSTATE_SKIP_CREATION_task-image-qa = '1' 329SSTATE_SKIP_CREATION_task-image-qa = '1'