From: Philip Oberfichtner <kallikles28@gmail.com>
To: Marek Vasut <marek.vasut@mailbox.org>
Cc: u-boot@lists.denx.de, Tom Rini <trini@konsulko.com>
Subject: Re: [PATCH v5 1/3] Image size checks: Use HAS_SIZE_LIMIT consistently
Date: Wed, 7 Jan 2026 18:34:24 +0100 [thread overview]
Message-ID: <aV6ZIEP6onZvPVtg@eryximachos> (raw)
In-Reply-To: <1f18b0bf-019c-45ee-a38b-5d29f8ee9b12@mailbox.org>
Hi Marek,
Thanks for the review, I'll get back to it asap. In the meantime please
take note of my new e-mail address.
Best regards,
Philip Oberfichtner
On Wed, Dec 31, 2025 at 10:27:44PM +0100, Marek Vasut wrote:
> On 11/10/25 10:12 AM, Philip Oberfichtner wrote:
>
> [...]
>
> > diff --git a/common/spl/Kconfig b/common/spl/Kconfig
> > index 8dade2b501e..97c7bfdad47 100644
> > --- a/common/spl/Kconfig
> > +++ b/common/spl/Kconfig
> > @@ -36,19 +36,33 @@ config SPL_FRAMEWORK_BOARD_INIT_F
> > - initialize the serial (preloader_console_init)
> > Unless you want to provide your own board_init_f, you should say Y.
> > +config HAS_SPL_SIZE_LIMIT
> > + bool "Enable size limit check for the SPL image"
> > + depends on !COMPILE_TEST
> > + depends on SPL
> > + default y if ARCH_MX6
> > + default y if ARCH_MVEBU && ARMADA_32BIT
> > + default y if ARMADA_38X
> > + default y if K3_DM_FW
>
> K3_DM_FW is some driver, what you likely want here is:
>
> default y if ARCH_K3 && CPU_V7R && !SOC_K3_AM642 && !SOC_K3_AM654 &&
> !CLK_TI_SCI && !TI_SCI_POWER_DOMAIN
>
> But it seems am64x_evm_r5_defconfig below enables HAS_SPL_SIZE_LIMIT too ,
> so likely remove !SOC_K3_AM642 from the above, which will allow you to
> reduce the amount of configs/ file changes.
>
> > + default y if SOC_K3_AM625
> > + default y if SOC_MT7621
> > + default y if TARGET_SOCFPGA_GEN5
>
> You could also add Xilinx Zynq/ZynqMP into the defaults here, which will
> further reduce the configs/ file changes.
>
> The rest looks fine, thanks !
next prev parent reply other threads:[~2026-01-07 18:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-10 9:12 [PATCH v5 0/3] Harmonize image size checks Philip Oberfichtner
2025-11-10 9:12 ` [PATCH v5 1/3] Image size checks: Use HAS_SIZE_LIMIT consistently Philip Oberfichtner
2025-12-31 21:27 ` Marek Vasut
2026-01-07 17:34 ` Philip Oberfichtner [this message]
2025-11-10 9:12 ` [PATCH v5 2/3] Image size checks: Clarify help texts Philip Oberfichtner
2025-12-31 21:20 ` Marek Vasut
2025-11-10 9:12 ` [PATCH v5 3/3] Makefile: Deduplicate image size checks Philip Oberfichtner
2025-12-31 21:25 ` Marek Vasut
2025-12-01 18:30 ` [PATCH v5 0/3] Harmonize " Philip Oberfichtner
2025-12-01 18:37 ` Tom Rini
2025-12-01 18:38 ` Philip Oberfichtner
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=aV6ZIEP6onZvPVtg@eryximachos \
--to=kallikles28@gmail.com \
--cc=marek.vasut@mailbox.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.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 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.