Fix the following error for machines like microzed: ERROR: Nothing PROVIDES 'virtual/xilinx-platform-init'
This happens because the contrib recipe is overriding the HAS_PLATFORM_INIT instead of appending the configuration for minized machine. This patch fixes the issue by adding an append. Signed-off-by: Manjukumar Matha <[email protected]> --- meta-xilinx-contrib/recipes-bsp/u-boot/u-boot_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-xilinx-contrib/recipes-bsp/u-boot/u-boot_%.bbappend b/meta-xilinx-contrib/recipes-bsp/u-boot/u-boot_%.bbappend index 665a78b..2fdbdb4 100644 --- a/meta-xilinx-contrib/recipes-bsp/u-boot/u-boot_%.bbappend +++ b/meta-xilinx-contrib/recipes-bsp/u-boot/u-boot_%.bbappend @@ -2,7 +2,7 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/files:" SRC_URI_append = " file://minized-u-boot.patch" -HAS_PLATFORM_INIT ??= " \ +HAS_PLATFORM_INIT_append = " \ zynq_minized_config \ " -- 2.7.4 -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx
