From: Lionel Flandrin Date: Mon, 13 Feb 2017 13:59:33 +0000 (+0100) Subject: u-boot: add an option to generate u-boot-dtb.bin X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fff0732af075a2318766f30c1c84a6405325a24e;p=buildroot.git u-boot: add an option to generate u-boot-dtb.bin Signed-off-by: Lionel Flandrin Signed-off-by: Thomas Petazzoni --- diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index 4e629c0ef4..1aa2cb7b43 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -159,6 +159,9 @@ config BR2_TARGET_UBOOT_FORMAT_BIN bool "u-boot.bin" default y +config BR2_TARGET_UBOOT_FORMAT_DTB_BIN + bool "u-boot-dtb.bin" + config BR2_TARGET_UBOOT_FORMAT_DTB_IMG bool "u-boot-dtb.img" diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 6b9d544546..ac3b42e42d 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -74,6 +74,11 @@ UBOOT_BINS += u-boot-dtb.img UBOOT_MAKE_TARGET += u-boot-dtb.img endif +ifeq ($(BR2_TARGET_UBOOT_FORMAT_DTB_BIN),y) +UBOOT_BINS += u-boot-dtb.bin +UBOOT_MAKE_TARGET += u-boot-dtb.bin +endif + ifeq ($(BR2_TARGET_UBOOT_FORMAT_IMG),y) UBOOT_BINS += u-boot.img UBOOT_MAKE_TARGET += u-boot.img