From 03f63f44246b8e62f85dcad86c1afec92ceb8c08 Mon Sep 17 00:00:00 2001 From: Ting Liu Date: Thu, 6 May 2021 18:01:39 +0800 Subject: layerscape: not set u-boot-dtb.bin in UBOOT_CONFIG The u-boot binary name is u-boot-fit-dtb.bin if CONFIG_MULTI_DTB_FIT is set. Below build error appears due to no u-boot-dtb.bin generated: | cp: cannot stat '.../u-boot-dtb.bin': No such file or directory | WARNING: exit code 1 from a shell command. Regardless of CONFIG_OF_SEPARATE or CONFIG_MULTI_DTB_FIT being set, the binary is copied as u-boot.bin which is used in uboot-config.bbclass by default. Not set u-boot-dtb.bin in UBOOT_CONFIG, just use the default u-boot.bin. Signed-off-by: Ting Liu --- conf/machine/ls2080ardb.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf/machine/ls2080ardb.conf') diff --git a/conf/machine/ls2080ardb.conf b/conf/machine/ls2080ardb.conf index 859a41be4..5bd4dae89 100644 --- a/conf/machine/ls2080ardb.conf +++ b/conf/machine/ls2080ardb.conf @@ -11,7 +11,7 @@ require conf/machine/include/qoriq-arm64.inc require conf/machine/include/arm/arch-arm64.inc UBOOT_CONFIG ??= "nor" -UBOOT_CONFIG[nor] = "ls2080ardb_defconfig,,u-boot-dtb.bin" +UBOOT_CONFIG[nor] = "ls2080ardb_defconfig" KERNEL_DEVICETREE ?= "freescale/fsl-ls2080a-rdb.dtb" KERNEL_DEFCONFIG ?= "defconfig" -- cgit v1.2.3-54-g00ecf