summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2022-07-07 10:51:22 -0700
committerMark Hatle <mark.hatle@amd.com>2022-07-28 12:49:51 -0700
commit32c8984108436fe40e9bc7c72a85567319985179 (patch)
tree1e06d9672440381bf88f110802e1a90943c90677
parenta73376974af152f2b2b2c465a3bf8f63cd05f418 (diff)
downloadmeta-xilinx-32c8984108436fe40e9bc7c72a85567319985179.tar.gz
u-boot-xlnx-blob.inc: Move to using UBOOT_IMAGE_BLOB_DEFAULT
UBOOT_IMAGE_BLOB may need a machine (override) specific default value, but we always want the user to be above to override this easily. Adding the new UBOOT_IMAGE_BLOB_DEFAULT allows us to set the default in a BSP layer, while continuing to make the UBOOT_IMAGE_BLOB setting easy for the user to adjust. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r--meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-blob.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-blob.inc b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-blob.inc
index 717b8dd3..5f09a99f 100644
--- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-blob.inc
+++ b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-blob.inc
@@ -1,6 +1,7 @@
1# U-boot fitimage/blob generator 1# U-boot fitimage/blob generator
2 2
3UBOOT_IMAGE_BLOB ?= "" 3UBOOT_IMAGE_BLOB_DEFAULT = ""
4UBOOT_IMAGE_BLOB ?= "${UBOOT_IMAGE_BLOB_DEFAULT}"
4DT_BLOB_DIR ?= "${B}/arch/arm/dts/dt-blob" 5DT_BLOB_DIR ?= "${B}/arch/arm/dts/dt-blob"
5UBOOT_BLOB_NAME ?= "${MACHINE}-fit-dtb${IMAGE_VERSION_SUFFIX}.blob" 6UBOOT_BLOB_NAME ?= "${MACHINE}-fit-dtb${IMAGE_VERSION_SUFFIX}.blob"
6 7