From 0812624ef2a3324c55d29b68ad294c3e8f3753be Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 21 Mar 2023 14:24:49 -0500 Subject: [PATCH] u-boot-xlnx-uenv: Add missing space to append operation Based on github Pull Request #42. While that pull request is no longer valid with other changes, the actual bug still exists. Originally reported by AnatoliiShablov. Signed-off-by: Mark Hatle --- meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-uenv.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-uenv.bb b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-uenv.bb index 7cd796c6e..228396ebd 100644 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-uenv.bb +++ b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-uenv.bb @@ -79,7 +79,7 @@ def uenv_populate(d): return env -DEPENDS:append := "virtual/kernel ${@remove_task_from_depends(d)}" +DEPENDS:append := " virtual/kernel ${@remove_task_from_depends(d)}" # bootargs, default to booting with the rootfs device being partition 2 KERNEL_BOOTARGS:zynq = "earlyprintk console=ttyPS0,115200 root=/dev/mmcblk0p2 rw rootwait"