[PATCH v1] imx: Makefile: added missing ahab.o

added missing ahab.o in Makefile
Signed-off-by: Oliver Graute oliver.graute@kococonnector.com Cc: Stefano Babic sbabic@denx.de Cc: Fabio Estevam festevam@gmail.com Cc: Peng Fan peng.fan@nxp.com Cc: Simon Glass sjg@chromium.org Cc: Ye Li ye.li@nxp.com Cc: uboot-imx uboot-imx@nxp.com --- arch/arm/mach-imx/imx8/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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

Hi Oliver,
On Wed, Feb 26, 2020 at 6:20 AM Oliver Graute oliver.graute@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@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
participants (3)
-
Fabio Estevam
-
Oliver Graute
-
Oliver Graute