# DCM specific bootfs image - standalone version # Replaces st-image-bootfs for DCM machine to fix kernel package issues SUMMARY = "DCM Boot filesystem image" DESCRIPTION = "Bootfs for DCM machine with correct kernel packages" LICENSE = "MIT" # Inherit from core bootfs functionality inherit core-image # Machine compatibility COMPATIBLE_MACHINE = "stm32mp157c-dcm" # Boot filesystem specific packages with CORRECT kernel package names PACKAGE_INSTALL = "\ packagegroup-core-boot \ kernel-image \ kernel-devicetree \ st-initrd \ stm32mp-extlinux \ u-boot-stm32mp-splash \ " # Image features for bootfs IMAGE_FEATURES = "read-only-rootfs" # Keep the image small IMAGE_ROOTFS_SIZE ?= "512" IMAGE_OVERHEAD_FACTOR = "1.0" IMAGE_ROOTFS_EXTRA_SPACE = "0" # Boot filesystem should be ext4 IMAGE_FSTYPES = "ext4"