diff options
Diffstat (limited to 'meta/classes/buildhistory.bbclass')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 109b375059..eea1e72a28 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass | |||
@@ -579,10 +579,14 @@ python buildhistory_get_extra_sdkinfo() { | |||
579 | 579 | ||
580 | # By using ROOTFS_POSTUNINSTALL_COMMAND we get in after uninstallation of | 580 | # By using ROOTFS_POSTUNINSTALL_COMMAND we get in after uninstallation of |
581 | # unneeded packages but before the removal of packaging files | 581 | # unneeded packages but before the removal of packaging files |
582 | ROOTFS_POSTUNINSTALL_COMMAND += " buildhistory_list_installed_image ;\ | 582 | ROOTFS_POSTUNINSTALL_COMMAND += "buildhistory_list_installed_image ;" |
583 | buildhistory_get_image_installed ; " | 583 | ROOTFS_POSTUNINSTALL_COMMAND += "buildhistory_get_image_installed ;" |
584 | 584 | ROOTFS_POSTUNINSTALL_COMMAND[vardepvalueexclude] .= "| buildhistory_list_installed_image ;| buildhistory_get_image_installed ;" | |
585 | IMAGE_POSTPROCESS_COMMAND += " buildhistory_get_imageinfo ; " | 585 | ROOTFS_POSTUNINSTALL_COMMAND[vardepsexclude] += "buildhistory_list_installed_image buildhistory_get_image_installed" |
586 | |||
587 | IMAGE_POSTPROCESS_COMMAND += "buildhistory_get_imageinfo ;" | ||
588 | IMAGE_POSTPROCESS_COMMAND[vardepvalueexclude] .= "| buildhistory_get_imageinfo ;" | ||
589 | IMAGE_POSTPROCESS_COMMAND[vardepsexclude] += "buildhistory_get_imageinfo" | ||
586 | 590 | ||
587 | # We want these to be the last run so that we get called after complementary package installation | 591 | # We want these to be the last run so that we get called after complementary package installation |
588 | POPULATE_SDK_POST_TARGET_COMMAND_append = " buildhistory_list_installed_sdk_target;" | 592 | POPULATE_SDK_POST_TARGET_COMMAND_append = " buildhistory_list_installed_sdk_target;" |