Message ID | 20200226091055.16562-1-oliver.graute@kococonnector.com |
---|---|
State | New |
Headers | show |
Series | [v1] imx: Makefile: added missing ahab.o | expand |
Hi Oliver, On Wed, Feb 26, 2020 at 6:20 AM Oliver Graute <oliver.graute at kococonnector.com> wrote: > -obj-y += cpu.o iomux.o misc.o lowlevel_init.o > +obj-y += ahab.o cpu.o iomux.o misc.o lowlevel_init.o Shouldn't ahab.o be included only if CONFIG_AHAB_BOOT is enabled? obj-$(CONFIG_AHAB_BOOT) += ahab.o Thanks
On 26/02/20, Fabio Estevam wrote: > Hi Oliver, > > On Wed, Feb 26, 2020 at 6:20 AM Oliver Graute > <oliver.graute at kococonnector.com> wrote: > > > -obj-y += cpu.o iomux.o misc.o lowlevel_init.o > > +obj-y += ahab.o cpu.o iomux.o misc.o lowlevel_init.o > > Shouldn't ahab.o be included only if CONFIG_AHAB_BOOT is enabled? > > obj-$(CONFIG_AHAB_BOOT) += ahab.o yes you are right. I'll fix that in v2 Best regards, Oliver
diff --git a/arch/arm/mach-imx/imx8/Makefile b/arch/arm/mach-imx/imx8/Makefile index 39e384d5c7..95892027e1 100644 --- a/arch/arm/mach-imx/imx8/Makefile +++ b/arch/arm/mach-imx/imx8/Makefile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-y += cpu.o iomux.o misc.o lowlevel_init.o +obj-y += ahab.o cpu.o iomux.o misc.o lowlevel_init.o obj-$(CONFIG_OF_SYSTEM_SETUP) += fdt.o ifdef CONFIG_SPL_BUILD
added missing ahab.o in Makefile Signed-off-by: Oliver Graute <oliver.graute at kococonnector.com> Cc: Stefano Babic <sbabic at denx.de> Cc: Fabio Estevam <festevam at gmail.com> Cc: Peng Fan <peng.fan at nxp.com> Cc: Simon Glass <sjg at chromium.org> Cc: Ye Li <ye.li at nxp.com> Cc: uboot-imx <uboot-imx at nxp.com> --- arch/arm/mach-imx/imx8/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)