summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 11:34:00 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 20:45:41 +0100
commitea984415f6ae5f6ad3f5b0900ace683027818a32 (patch)
tree5fb909530723d3e7afcc242a6a69d20a26fad5e6 /meta/lib
parent866d0756d0cfec78d88037ba6c71ec58af9b215f (diff)
downloadpoky-ea984415f6ae5f6ad3f5b0900ace683027818a32.tar.gz
meta: Convert IMAGE_TYPEDEP to use override syntax
The IMAGE_TYPEDEP variable would make more sense to match the form of the other image override variables, convert it to use the overrides format. (From OE-Core rev: 8573f6b2a7af9867da0b21936ffd2cd2a417de1d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/containerimage.py2
-rw-r--r--meta/lib/oeqa/selftest/cases/image_typedep.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/containerimage.py b/meta/lib/oeqa/selftest/cases/containerimage.py
index b92e520bc2..3068c9ba26 100644
--- a/meta/lib/oeqa/selftest/cases/containerimage.py
+++ b/meta/lib/oeqa/selftest/cases/containerimage.py
@@ -22,7 +22,7 @@ from oeqa.utils.commands import bitbake, get_bb_vars, runCmd
22# 22#
23class ContainerImageTests(OESelftestTestCase): 23class ContainerImageTests(OESelftestTestCase):
24 24
25 # Verify that when specifying a IMAGE_TYPEDEP_ of the form "foo.bar" that 25 # Verify that when specifying a IMAGE_TYPEDEP: of the form "foo.bar" that
26 # the conversion type bar gets added as a dep as well 26 # the conversion type bar gets added as a dep as well
27 def test_expected_files(self): 27 def test_expected_files(self):
28 28
diff --git a/meta/lib/oeqa/selftest/cases/image_typedep.py b/meta/lib/oeqa/selftest/cases/image_typedep.py
index 52e1080f13..5b182a8f94 100644
--- a/meta/lib/oeqa/selftest/cases/image_typedep.py
+++ b/meta/lib/oeqa/selftest/cases/image_typedep.py
@@ -9,7 +9,7 @@ from oeqa.utils.commands import bitbake
9 9
10class ImageTypeDepTests(OESelftestTestCase): 10class ImageTypeDepTests(OESelftestTestCase):
11 11
12 # Verify that when specifying a IMAGE_TYPEDEP_ of the form "foo.bar" that 12 # Verify that when specifying a IMAGE_TYPEDEP: of the form "foo.bar" that
13 # the conversion type bar gets added as a dep as well 13 # the conversion type bar gets added as a dep as well
14 def test_conversion_typedep_added(self): 14 def test_conversion_typedep_added(self):
15 15
@@ -22,7 +22,7 @@ LICENSE = "MIT"
22IMAGE_FSTYPES = "testfstype" 22IMAGE_FSTYPES = "testfstype"
23 23
24IMAGE_TYPES_MASKED += "testfstype" 24IMAGE_TYPES_MASKED += "testfstype"
25IMAGE_TYPEDEP_testfstype = "tar.bz2" 25IMAGE_TYPEDEP:testfstype = "tar.bz2"
26 26
27inherit image 27inherit image
28 28