From 5d82344795dbd3fcd74c974ab60b2845970dc5e3 Mon Sep 17 00:00:00 2001 From: Michael Ellerman Date: Wed, 25 Nov 2020 14:15:51 +1100 Subject: [PATCH] powerpc/configs: Add ppc64le_allnoconfig target Add a phony target for ppc64le_allnoconfig, which tests some combinations of CONFIG symbols that aren't covered by any of our defconfigs. Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20201125031551.2112715-1-mpe@ellerman.id.au --- arch/powerpc/Makefile | 5 +++++ arch/powerpc/configs/ppc64le.config | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 arch/powerpc/configs/ppc64le.config diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index fde3dbe57bda..2bd509fa2487 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -375,6 +375,11 @@ ppc64le_allmodconfig: $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/le.config \ -f $(srctree)/Makefile allmodconfig +PHONY += ppc64le_allnoconfig +ppc64le_allnoconfig: + $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/ppc64le.config \ + -f $(srctree)/Makefile allnoconfig + PHONY += ppc64_book3e_allmodconfig ppc64_book3e_allmodconfig: $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/85xx-64bit.config \ diff --git a/arch/powerpc/configs/ppc64le.config b/arch/powerpc/configs/ppc64le.config new file mode 100644 index 000000000000..14dca1062c1b --- /dev/null +++ b/arch/powerpc/configs/ppc64le.config @@ -0,0 +1,2 @@ +CONFIG_PPC64=y +CONFIG_CPU_LITTLE_ENDIAN=y