All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 1/4] boot/uboot: add stm32 binary format
@ 2020-10-07 14:49 Shlomi Vaknin
  2020-10-07 14:49 ` [Buildroot] [PATCH v3 2/4] configs/stm32mp157*: use trusted configuration Shlomi Vaknin
                   ` (3 more replies)
  0 siblings, 4 replies; 26+ messages in thread
From: Shlomi Vaknin @ 2020-10-07 14:49 UTC (permalink / raw)
  To: buildroot

Add `.stm32` binary format that uboot generates for the trusted configuration.

Signed-off-by: Shlomi Vaknin <shlomi.39sd@gmail.com>
---
 boot/uboot/Config.in | 4 ++++
 boot/uboot/uboot.mk  | 5 +++++
 2 files changed, 9 insertions(+)

diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in
index 9e44daffab..01dea01764 100644
--- a/boot/uboot/Config.in
+++ b/boot/uboot/Config.in
@@ -343,6 +343,10 @@ config BR2_TARGET_UBOOT_FORMAT_SD
 
 	  See doc/README.mxs (or doc/README.mx28_common before 2013.07)
 
+config BR2_TARGET_UBOOT_FORMAT_STM32
+	bool "u-boot.stm32"
+	depends on BR2_arm
+
 config BR2_TARGET_UBOOT_FORMAT_CUSTOM
 	bool "Custom (specify below)"
 	help
diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk
index f27abbd5ba..72d5df412d 100644
--- a/boot/uboot/uboot.mk
+++ b/boot/uboot/uboot.mk
@@ -121,6 +121,11 @@ UBOOT_MAKE_TARGET += u-boot.sb
 UBOOT_DEPENDENCIES += host-elftosb host-openssl
 endif
 
+ifeq ($(BR2_TARGET_UBOOT_FORMAT_STM32),y)
+UBOOT_BINS += u-boot.stm32
+UBOOT_MAKE_TARGET += u-boot.stm32
+endif
+
 ifeq ($(BR2_TARGET_UBOOT_FORMAT_CUSTOM),y)
 UBOOT_BINS += $(call qstrip,$(BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME))
 endif
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2020-11-01 11:08 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-07 14:49 [Buildroot] [PATCH v3 1/4] boot/uboot: add stm32 binary format Shlomi Vaknin
2020-10-07 14:49 ` [Buildroot] [PATCH v3 2/4] configs/stm32mp157*: use trusted configuration Shlomi Vaknin
2020-10-12 18:08   ` Bartosz Bilas
2020-10-12 20:11     ` Shlomi Vaknin
2020-10-13 17:29       ` Bartosz Bilas
2020-10-14 17:02   ` Thomas Petazzoni
2020-10-07 14:49 ` [Buildroot] [PATCH v3 3/4] configs/stm32mp157*: bump kernel version Shlomi Vaknin
2020-10-14 17:02   ` Thomas Petazzoni
2020-10-07 14:49 ` [Buildroot] [PATCH v3 4/4] configs/stm32mp157c-dk2: add support for wifi Shlomi Vaknin
     [not found]   ` <15798cdd-e335-a291-53d4-1ac03d1bbd6c@grinn-global.com>
2020-10-07 19:27     ` Bartosz Bilas
2020-10-07 20:16       ` Shlomi Vaknin
2020-10-08 17:31         ` Bartosz Bilas
2020-10-08 20:45           ` Shlomi Vaknin
2020-10-09 16:49             ` Bartosz Bilas
2020-10-09 19:13               ` Shlomi Vaknin
2020-10-10 15:41                 ` Bartosz Bilas
2020-10-10 18:08                   ` Shlomi Vaknin
2020-10-10 18:59                     ` Shlomi Vaknin
2020-10-10 19:01                   ` Bartosz Bilas
2020-10-10 20:48                     ` Shlomi Vaknin
2020-10-12 14:49                       ` Bartosz Bilas
2020-10-12 17:35                         ` Shlomi Vaknin
2020-10-12 18:15                           ` Bartosz Bilas
2020-10-14 17:02   ` Thomas Petazzoni
2020-11-01 11:08   ` Sergey Matyukevich
2020-10-14 17:00 ` [Buildroot] [PATCH v3 1/4] boot/uboot: add stm32 binary format Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.