u-boot/common/spl/Makefile
.. .. @@ -24,7 +24,7 @@ 24 24 25 25 ifdef CONFIG_SPL_BUILD 26 26 obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o 27 -ifdef CONFIG_SPL_KERNEL_BOOT27 +ifdef CONFIG_SPL_KERNEL_BOOT_PREBUILT28 28 ifdef CONFIG_ARM64 29 29 obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit_tb_arm64.o 30 30 else .. .. @@ -57,4 +57,5 @@ 57 57 obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o 58 58 obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o 59 59 obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o 60 +obj-$(CONFIG_$(SPL_TPL_)BOOT_IMAGE) += spl_boot_image.o60 61 endif