[PATCH] mach-imx: bootaux: fix building with disabled bootelf

Tom Rini trini at konsulko.com
Sun Aug 27 01:50:00 CEST 2023


On Sat, Aug 26, 2023 at 06:16:36PM +0300, Oleksandr Suvorov wrote:
> Hi Heinrich,
> 
> On Sat, Aug 26, 2023 at 4:46 PM Heinrich Schuchardt <xypron.glpk at gmx.de> wrote:
> >
> > On 8/26/23 15:24, Oleksandr Suvorov wrote:
> > > If CMD_ELF disabled and IMX_BOOTAUX enabled, the u-boot building ends
> > > up with a linking error [1]. Select LIB_ELF for all cases when
> > > valid_elf_image() is used in the imx_bootaux module.
> > >
> > > [1]
> > > ld: /tmp/ccaF1rpv.ltrans0.ltrans.o: in function `do_bootaux':
> > > arch/arm/mach-imx/imx_bootaux.c:108: undefined reference to `valid_elf_image'
> > >
> > > Fixes: c0f037f6a2a ("mach-imx: bootaux: elf firmware support")
> > > Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov at foundries.io>
> > > ---
> > >
> > >   arch/arm/mach-imx/Kconfig | 1 +
> > >   1 file changed, 1 insertion(+)
> > >
> > > diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
> > > index d94b5828d0d..cbe62d6b8f9 100644
> > > --- a/arch/arm/mach-imx/Kconfig
> > > +++ b/arch/arm/mach-imx/Kconfig
> > > @@ -32,6 +32,7 @@ config IMX_RDC
> > >   config IMX_BOOTAUX
> > >       bool "Support boot auxiliary core"
> > >       depends on ARCH_MX7 || ARCH_MX6 || ARCH_VF610 || ARCH_IMX8 || ARCH_IMX8M
> > > +     select LIB_ELF if !ARCH_IMX8 || IMX8QXP
> >
> > For CONFIG_IMX8QXP=y arch/arm/mach-imx/imx8/cpu.c uses valid_elf_image().
> >
> > Shouldn't the IMX8QXP case be handled in arch/arm/mach-imx/imx8/Kconfig?
> >
> > config IMX8QXP
> >         select LIB_ELF
> 
> We need to select LIB_ELF for this SoC only if IMX_BOOTAUX is enabled:
> the arch/arm/mach-imx/imx8/cpu.c guards with #ifdef CONFIG_IMX_BOOTAUX
> functions that
> call lib/elf.o members.

And what about the rest of the platforms above?  There's certainly some
missing Kconfig enforcement of requirements, but I suspect it's wider
than just one set of SoC families for a long-standing feature.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20230826/33beb0b5/attachment.sig>


More information about the U-Boot mailing list