diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:29:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:30:59 +0100 |
commit | 72bfe3c07a4f36575d796f1cb9f465d6f959746b (patch) | |
tree | 7a3860d2106dd74ee86117dc34085fc9bcac48e1 | |
parent | ddd003805782e1fcfc3d59d9b0a1277cf3d1fae9 (diff) | |
download | openembedded-core-72bfe3c07a4f36575d796f1cb9f465d6f959746b.tar.gz openembedded-core-72bfe3c07a4f36575d796f1cb9f465d6f959746b.tar.bz2 openembedded-core-72bfe3c07a4f36575d796f1cb9f465d6f959746b.zip |
meta-selftest/images: Add LIC_FILES_CHKSUM to images using image.bbclass
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-selftest/recipes-test/images/test-empty-image.bb | 1 | ||||
-rw-r--r-- | meta-selftest/recipes-test/images/wic-image-minimal.bb | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/images/test-empty-image.bb b/meta-selftest/recipes-test/images/test-empty-image.bb index 88d8d612e8..1c9f720615 100644 --- a/meta-selftest/recipes-test/images/test-empty-image.bb +++ b/meta-selftest/recipes-test/images/test-empty-image.bb @@ -2,5 +2,6 @@ SUMMARY = "An empty image." IMAGE_INSTALL = "" IMAGE_LINGUAS = "" PACKAGE_INSTALL = "" +IC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" inherit image diff --git a/meta-selftest/recipes-test/images/wic-image-minimal.bb b/meta-selftest/recipes-test/images/wic-image-minimal.bb index a294ba7af4..754689f999 100644 --- a/meta-selftest/recipes-test/images/wic-image-minimal.bb +++ b/meta-selftest/recipes-test/images/wic-image-minimal.bb @@ -9,6 +9,8 @@ RM_OLD_IMAGE = "1" DEPENDS = "syslinux syslinux-native parted-native dosfstools-native mtools-native gptfdisk-native" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" + # core-image-minimal is referenced in .wks, so we need its rootfs # to be ready before our rootfs do_rootfs[depends] += "core-image-minimal:do_image core-image-minimal:do_rootfs_wicenv" |