@@ -885,48 +885,6 @@ FIT_HASH_ALG = "sha256"
self._test_fitimage(bb_vars)
- def test_fit_image_sign_initramfs_bundle(self):
- """
- Summary: Verifies the content of the initramfs bundle node in the FIT Image Tree Source (its)
- The FIT settings are set by the test case.
- The machine used is beaglebone-yocto.
- Expected: 1. The ITS is generated with initramfs bundle support
- 2. All the fields in the kernel node are as expected (matching the
- conf settings)
- 3. The kernel is included in all the available configurations and
- its hash is included in the configuration signature
-
- Product: oe-core
- Author: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
- """
-
- config = """
-DISTRO="poky"
-MACHINE = "beaglebone-yocto"
-INITRAMFS_IMAGE_BUNDLE = "1"
-INITRAMFS_IMAGE = "core-image-minimal-initramfs"
-INITRAMFS_SCRIPTS = ""
-UBOOT_MACHINE = "am335x_evm_defconfig"
-UBOOT_SIGN_ENABLE = "1"
-UBOOT_SIGN_KEYNAME = "beaglebonekey"
-UBOOT_SIGN_KEYDIR ?= "${DEPLOY_DIR_IMAGE}"
-UBOOT_DTB_BINARY = "u-boot.dtb"
-UBOOT_ENTRYPOINT = "0x80000000"
-UBOOT_LOADADDRESS = "0x80000000"
-UBOOT_DTB_LOADADDRESS = "0x82000000"
-UBOOT_ARCH = "arm"
-UBOOT_MKIMAGE_DTCOPTS = "-I dts -O dtb -p 2000"
-UBOOT_MKIMAGE_KERNEL_TYPE = "kernel"
-UBOOT_EXTLINUX = "0"
-FIT_GENERATE_KEYS = "1"
-KERNEL_IMAGETYPE_REPLACEMENT = "zImage"
-FIT_KERNEL_COMP_ALG = "none"
-FIT_HASH_ALG = "sha256"
-"""
- config = self._config_add_uboot_env(config)
- self.write_config(config)
- bb_vars = self._fit_get_bb_vars()
- self._test_fitimage(bb_vars)
class FitImagePyTests(KernelFitImageBase):
"""Test cases for the fitimage.py module without calling bitbake"""