summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Freihofer <adrian.freihofer@siemens.com>2025-06-03 10:23:29 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-05 11:02:22 +0100
commit7114f4e07e1da60b6ec2f89d92885e653bfc8076 (patch)
tree4f36b7d129e2306be6238904749ec52290033220
parent43949b9d08145699c03356fe8801f05f07783b94 (diff)
downloadpoky-7114f4e07e1da60b6ec2f89d92885e653bfc8076.tar.gz
oe-selftest: fitimage: remove kernel-fitimage tests
Remove the test cases for the kernel-fitimage.bbclass. (From OE-Core rev: c699dc66fd30cdfc5a3d53997107b870b9e4af65) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/fitimage.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/meta/lib/oeqa/selftest/cases/fitimage.py b/meta/lib/oeqa/selftest/cases/fitimage.py
index 7b6cba1d06..be291e4b0f 100644
--- a/meta/lib/oeqa/selftest/cases/fitimage.py
+++ b/meta/lib/oeqa/selftest/cases/fitimage.py
@@ -437,8 +437,6 @@ class KernelFitImageBase(FitImageTestCase):
437 def _config_add_kernel_classes(self, config): 437 def _config_add_kernel_classes(self, config):
438 config += '# Use kernel-fit-extra-artifacts.bbclass for the creation of the vmlinux artifact' + os.linesep 438 config += '# Use kernel-fit-extra-artifacts.bbclass for the creation of the vmlinux artifact' + os.linesep
439 config += 'KERNEL_CLASSES = "kernel-fit-extra-artifacts"' + os.linesep 439 config += 'KERNEL_CLASSES = "kernel-fit-extra-artifacts"' + os.linesep
440 config += '# Avoid naming clashes in the deploy folder with kernel-fitimage.bbclass artifacts' + os.linesep
441 config += 'KERNEL_DEPLOYSUBDIR = "linux-yocto-fitimage"' + os.linesep
442 return config 440 return config
443 441
444 @property 442 @property
@@ -1022,20 +1020,6 @@ FIT_HASH_ALG = "sha256"
1022 self._gen_signing_key(bb_vars) 1020 self._gen_signing_key(bb_vars)
1023 self._test_fitimage(bb_vars) 1021 self._test_fitimage(bb_vars)
1024 1022
1025class KernelFitImageTests(KernelFitImageRecipeTests):
1026 """Test cases for the kernel-fitimage.bbclass"""
1027
1028 @property
1029 def kernel_recipe(self):
1030 # virtual/kernel does not work with SRC_URI:append:pn-%s
1031 return "linux-yocto"
1032
1033 def _config_add_kernel_classes(self, config):
1034 config += '# Use kernel-fitimage.bbclass for the creation of the fitImage' + os.linesep
1035 config += 'KERNEL_IMAGETYPES += " fitImage "' + os.linesep
1036 config += 'KERNEL_CLASSES = " kernel-fitimage "' + os.linesep
1037 return config
1038
1039class FitImagePyTests(KernelFitImageBase): 1023class FitImagePyTests(KernelFitImageBase):
1040 """Test cases for the fitimage.py module without calling bitbake""" 1024 """Test cases for the fitimage.py module without calling bitbake"""
1041 1025