Disable DIP detection functionality in XPL (eXtended Program Loader) images to reduce size and complexity in the early boot stage.
Signed-off-by: Kory Maincent (TI.com) <[email protected]> --- Change in v2: - New patch. --- board/sunxi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/sunxi/Makefile b/board/sunxi/Makefile index d96b7897b6c..ee82493117a 100644 --- a/board/sunxi/Makefile +++ b/board/sunxi/Makefile @@ -11,4 +11,4 @@ obj-$(CONFIG_SUN7I_GMAC) += gmac.o obj-$(CONFIG_MACH_SUN4I) += dram_sun4i_auto.o obj-$(CONFIG_MACH_SUN5I) += dram_sun5i_auto.o obj-$(CONFIG_MACH_SUN7I) += dram_sun5i_auto.o -obj-$(CONFIG_CHIP_DIP_SCAN) += chip.o +obj-$(CONFIG_$(PHASE_)CHIP_DIP_SCAN) += chip.o -- 2.43.0

