U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Gary Bisson <bisson.gary@gmail.com>
To: u-boot@lists.denx.de
Cc: trini@konsulko.com, festevam@gmail.com, peng.fan@nxp.com,
	uboot-imx@nxp.com, Gary Bisson <bisson.gary@gmail.com>
Subject: [PATCH v2 3/5] spl: binman: Disable u_boot_any symbols for i.MX 8ULP boards
Date: Mon,  5 Aug 2024 23:25:09 +0200	[thread overview]
Message-ID: <20240805212511.653667-4-bisson.gary@gmail.com> (raw)
In-Reply-To: <20240805212511.653667-1-bisson.gary@gmail.com>

This is extending commit da96f93cda9 ("spl: binman: Disable u_boot_any
symbols for i.MX93 boards") to i.MX 8ULP boards.

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
---
 common/spl/Kconfig     | 2 +-
 common/spl/Kconfig.tpl | 2 +-
 common/spl/Kconfig.vpl | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 6f56ca911c1..c08ff064493 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -206,7 +206,7 @@ config SPL_BINMAN_SYMBOLS
 config SPL_BINMAN_UBOOT_SYMBOLS
 	bool "Declare binman symbols for U-Boot phases in SPL"
 	depends on SPL_BINMAN_SYMBOLS
-	default n if ARCH_IMX8M || ARCH_IMX9
+	default n if ARCH_IMX8M || ARCH_IMX8ULP || ARCH_IMX9
 	default y
 	help
 	  This enables use of symbols in SPL which refer to U-Boot phases,
diff --git a/common/spl/Kconfig.tpl b/common/spl/Kconfig.tpl
index 4ee3b9b826d..92d4d43ec87 100644
--- a/common/spl/Kconfig.tpl
+++ b/common/spl/Kconfig.tpl
@@ -23,7 +23,7 @@ config TPL_BINMAN_SYMBOLS
 config TPL_BINMAN_UBOOT_SYMBOLS
 	bool "Declare binman symbols for U-Boot phases in TPL"
 	depends on TPL_BINMAN_SYMBOLS
-	default n if ARCH_IMX8M || ARCH_IMX9
+	default n if ARCH_IMX8M || ARCH_IMX8ULP || ARCH_IMX9
 	default y
 	help
 	  This enables use of symbols in TPL which refer to U-Boot phases,
diff --git a/common/spl/Kconfig.vpl b/common/spl/Kconfig.vpl
index f1993026bba..d06f36d4ee4 100644
--- a/common/spl/Kconfig.vpl
+++ b/common/spl/Kconfig.vpl
@@ -243,7 +243,7 @@ config VPL_BINMAN_SYMBOLS
 config VPL_BINMAN_UBOOT_SYMBOLS
 	bool "Declare binman symbols for U-Boot phases in VPL"
 	depends on VPL_BINMAN_SYMBOLS
-	default n if ARCH_IMX8M || ARCH_IMX9
+	default n if ARCH_IMX8M || ARCH_IMX8ULP || ARCH_IMX9
 	default y
 	help
 	  This enables use of symbols in VPL which refer to U-Boot phases,
-- 
2.43.0


  parent reply	other threads:[~2024-08-05 21:25 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-05 12:43 [PATCH 0/5] imx: imx8ulp: add binman support Gary Bisson
2024-08-05 12:43 ` [PATCH 1/5] tools: imx8image: fix soc variable for ULP Gary Bisson
2024-08-05 14:01   ` Peng Fan
2024-08-13 16:23   ` Fabio Estevam
2024-08-05 12:43 ` [PATCH 2/5] tools: imx8image: add upower image support Gary Bisson
2024-08-05 14:04   ` Peng Fan
2024-08-05 12:43 ` [PATCH 3/5] spl: binman: Disable u_boot_any symbols for i.MX 8ULP boards Gary Bisson
2024-08-05 14:05   ` Peng Fan
2024-08-05 12:43 ` [PATCH 4/5] mach-imx: Add i.MX 8ULP binman support Gary Bisson
2024-08-05 14:06   ` Peng Fan
2024-08-05 12:43 ` [PATCH 5/5] imx8ulp_evk: enable " Gary Bisson
2024-08-05 14:10   ` Peng Fan
2024-08-05 13:31 ` [PATCH 0/5] imx: imx8ulp: add " Fabio Estevam
2024-08-05 13:43   ` Gary Bisson
2024-08-05 21:25 ` [PATCH v2 " Gary Bisson
2024-08-05 21:25   ` [PATCH v2 1/5] tools: imx8image: fix soc variable for ULP Gary Bisson
2024-08-05 21:25   ` [PATCH v2 2/5] tools: imx8image: add upower image support Gary Bisson
2024-08-05 21:25   ` Gary Bisson [this message]
2024-08-05 21:25   ` [PATCH v2 4/5] mach-imx: Add i.MX 8ULP binman support Gary Bisson
2024-08-05 21:25   ` [PATCH v2 5/5] imx8ulp_evk: enable " Gary Bisson

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=20240805212511.653667-4-bisson.gary@gmail.com \
    --to=bisson.gary@gmail.com \
    --cc=festevam@gmail.com \
    --cc=peng.fan@nxp.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-imx@nxp.com \
    /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