From: Tom Hochstein Date: Wed, 7 Apr 2021 14:33:09 +0000 (-0500) Subject: u-boot-imx: Enable building for mainline BSP X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=578023ff0ee38738e594785e271857ab80609982;p=meta-freescale.git u-boot-imx: Enable building for mainline BSP Building u-boot-imx for mainline BSP results in the following error: ``` u-boot-imx PROVIDES u-boot but was skipped: incompatible with machine imx8mp-ddr4-evk (not in COMPATIBLE_MACHINE) ``` Add use-mainline-bsp to COMPATIBLE_MACHINE to fix this. Signed-off-by: Tom Hochstein --- diff --git a/recipes-bsp/u-boot/u-boot-imx_2020.04.bb b/recipes-bsp/u-boot/u-boot-imx_2020.04.bb index b36730e0..55d3e7c5 100644 --- a/recipes-bsp/u-boot/u-boot-imx_2020.04.bb +++ b/recipes-bsp/u-boot/u-boot-imx_2020.04.bb @@ -29,4 +29,4 @@ do_deploy_append_mx8m() { } PACKAGE_ARCH = "${MACHINE_ARCH}" -COMPATIBLE_MACHINE = "(mx6|mx7|mx8)" +COMPATIBLE_MACHINE = "(mx6|mx7|mx8|use-mainline-bsp)"