On Tuesday 21 February 2023 14:46:37 Paul Gortmaker wrote: > None of these have a reference anymore anywhere, such as like this: > > arch/powerpc/Makefile: $(call merge_into_defconfig,mpc85xx_base.config,\ > > As such, we probably should just clean up and remove them. > > Cc: Scott Wood <o...@buserror.net> > Cc: Michael Ellerman <m...@ellerman.id.au> > Cc: Benjamin Herrenschmidt <b...@kernel.crashing.org> > Cc: Paul Mackerras <pau...@samba.org> > Signed-off-by: Paul Gortmaker <paul.gortma...@windriver.com> > --- > arch/powerpc/configs/85xx-32bit.config | 5 - > arch/powerpc/configs/85xx-hw.config | 139 ------------------------- > arch/powerpc/configs/85xx-smp.config | 2 - > 3 files changed, 146 deletions(-) > delete mode 100644 arch/powerpc/configs/85xx-32bit.config > delete mode 100644 arch/powerpc/configs/85xx-hw.config > delete mode 100644 arch/powerpc/configs/85xx-smp.config
This change is likely going to break mpc85xx platform because defconfig files includes all these files which you are going to remove. For example in arch/powerpc/Makefile is: PHONY += mpc85xx_smp_defconfig mpc85xx_smp_defconfig: $(call merge_into_defconfig,mpc85xx_base.config,\ 85xx-32bit 85xx-smp 85xx-hw fsl-emb-nonhw) And for P2020 boards I'm using mpc85xx_smp_defconfig configuration as this one compiles SMP kernel, ideal for P2020 which is dual-core SoC.