From: "Guillermo Rodríguez" <guille.rodriguez@gmail.com>
To: ptxdist@pengutronix.de
Cc: "Guillermo Rodríguez" <guille.rodriguez@gmail.com>
Subject: [ptxdist] [PATCH v2] u-boot: Add support for custom make options
Date: Mon, 17 Feb 2020 09:17:05 +0100 [thread overview]
Message-ID: <20200217081705.6773-1-guille.rodriguez@gmail.com> (raw)
In-Reply-To: <20200215090740.GA21732@pengutronix.de>
For some platforms (e.g. stm32mp1) the official way to build U-boot
with a device tree other than the board's default requires passing
additional make options such as DEVICE_TREE=xxx or EXT_DTB=xxx.
Instead of adding each possible option as a parameter in the .in
file, add a generic mechanism to allow passing custom make options
to U-boot. A similar approach has been adopted by buildroot.
Signed-off-by: Guillermo Rodriguez <guille.rodriguez@gmail.com>
---
v2: Rewrite commit message including rationale
platforms/u-boot.in | 7 +++++++
rules/u-boot.make | 3 ++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/platforms/u-boot.in b/platforms/u-boot.in
index 50fb008a3..491faed60 100644
--- a/platforms/u-boot.in
+++ b/platforms/u-boot.in
@@ -71,6 +71,13 @@ config U_BOOT_CONFIG
endif
+config U_BOOT_CUSTOM_MAKE_OPTS
+ prompt "Custom make options"
+ string
+ help
+ List of custom make options passed at build time. Can be
+ used for example to pass a DEVICE_TREE= value.
+
choice
prompt "Generate environment image"
default U_BOOT_ENV_IMAGE_NONE
diff --git a/rules/u-boot.make b/rules/u-boot.make
index 0c6bccc71..e386dc4d2 100644
--- a/rules/u-boot.make
+++ b/rules/u-boot.make
@@ -55,7 +55,8 @@ U_BOOT_WRAPPER_BLACKLIST := \
U_BOOT_CONF_OPT := \
-C $(U_BOOT_DIR) \
O=$(U_BOOT_BUILD_DIR) \
- V=$(PTXDIST_VERBOSE)
+ V=$(PTXDIST_VERBOSE) \
+ $(call remove_quotes,$(PTXCONF_U_BOOT_CUSTOM_MAKE_OPTS))
U_BOOT_MAKE_ENV := \
CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \
--
2.21.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
prev parent reply other threads:[~2020-02-17 8:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-14 11:07 [ptxdist] [PATCH] " Guillermo Rodríguez
2020-02-14 11:13 ` Guillermo Rodriguez Garcia
2020-02-15 9:07 ` Michael Olbrich
2020-02-17 8:17 ` Guillermo Rodríguez [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200217081705.6773-1-guille.rodriguez@gmail.com \
--to=guille.rodriguez@gmail.com \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox