I am trying to integrate Mender OTA updates into my Yocto build. However, I am encountering the following error during the build process:
ERROR: Nothing provides kernel-devicetree needed by packagegroup-core-boot-1.0-r17.0.0.sa8155
I am new to Yocto and Mender, so I am not sure how to resolve this issue. Below are my configurations and steps I have taken so far.
Mender Storage Configuration
MENDER_STORAGE_DEVICE = “/dev/sda”
MENDER_STORAGE_TOTAL_SIZE_MB = “137216”
MENDER_BOOT_PART_SIZE_MB = “64”
MENDER_DATA_PART_SIZE_MB = “131072”
MENDER_IMAGE_ROOTFS_SIZE_MB = “3020”
Bootloader (EDK2)
MENDER_FEATURES_ENABLE:append = " mender-image"
MENDER_FEATURES_DISABLE:append = " mender-grub mender-uboot"
Artifact Configuration
MENDER_ARTIFACT_NAME = “release-1”
Any help would be appreciated. Thanks