* [PATCH] ARM: default to multi_v7_defconfig
@ 2015-12-18 22:44 Arnd Bergmann
2015-12-22 10:06 ` Linus Walleij
2015-12-22 10:18 ` Will Deacon
0 siblings, 2 replies; 4+ messages in thread
From: Arnd Bergmann @ 2015-12-18 22:44 UTC (permalink / raw)
To: linux-arm-kernel
versatile_defconfig has not been a reasonable default for a very long
time, there is very little work happening on this platform and it's
based on an old ARM926 CPU core.
This changes the default to multi_v7_defconfig, which is much more
relevant to anyone doing a build test on ARM, as it covers a wide
range of platforms.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index 2c2b28ee4811..e9fb67913e6e 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -30,9 +30,8 @@ GZFLAGS :=-9
# Never generate .eh_frame
KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
-# Do not use arch/arm/defconfig - it's always outdated.
-# Select a platform tht is kept up-to-date
-KBUILD_DEFCONFIG := versatile_defconfig
+# This should work on most of the modern platforms
+KBUILD_DEFCONFIG := multi_v7_defconfig
# defines filename extension depending memory management type.
ifeq ($(CONFIG_MMU),)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: default to multi_v7_defconfig
2015-12-18 22:44 [PATCH] ARM: default to multi_v7_defconfig Arnd Bergmann
@ 2015-12-22 10:06 ` Linus Walleij
2015-12-22 10:18 ` Will Deacon
1 sibling, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2015-12-22 10:06 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Dec 18, 2015 at 11:44 PM, Arnd Bergmann <arnd@arndb.de> wrote:
> versatile_defconfig has not been a reasonable default for a very long
> time, there is very little work happening on this platform and it's
> based on an old ARM926 CPU core.
>
> This changes the default to multi_v7_defconfig, which is much more
> relevant to anyone doing a build test on ARM, as it covers a wide
> range of platforms.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: default to multi_v7_defconfig
2015-12-18 22:44 [PATCH] ARM: default to multi_v7_defconfig Arnd Bergmann
2015-12-22 10:06 ` Linus Walleij
@ 2015-12-22 10:18 ` Will Deacon
2015-12-31 15:11 ` Arnd Bergmann
1 sibling, 1 reply; 4+ messages in thread
From: Will Deacon @ 2015-12-22 10:18 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Dec 18, 2015 at 11:44:23PM +0100, Arnd Bergmann wrote:
> versatile_defconfig has not been a reasonable default for a very long
> time, there is very little work happening on this platform and it's
> based on an old ARM926 CPU core.
>
> This changes the default to multi_v7_defconfig, which is much more
> relevant to anyone doing a build test on ARM, as it covers a wide
> range of platforms.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>
> diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> index 2c2b28ee4811..e9fb67913e6e 100644
> --- a/arch/arm/Makefile
> +++ b/arch/arm/Makefile
> @@ -30,9 +30,8 @@ GZFLAGS :=-9
> # Never generate .eh_frame
> KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
>
> -# Do not use arch/arm/defconfig - it's always outdated.
> -# Select a platform tht is kept up-to-date
> -KBUILD_DEFCONFIG := versatile_defconfig
> +# This should work on most of the modern platforms
> +KBUILD_DEFCONFIG := multi_v7_defconfig
>
> # defines filename extension depending memory management type.
> ifeq ($(CONFIG_MMU),)
Acked-by: Will Deacon <will.deacon@arm.com>
Will
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: default to multi_v7_defconfig
2015-12-22 10:18 ` Will Deacon
@ 2015-12-31 15:11 ` Arnd Bergmann
0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2015-12-31 15:11 UTC (permalink / raw)
To: linux-arm-kernel
On Tuesday 22 December 2015 10:18:35 Will Deacon wrote:
> On Fri, Dec 18, 2015 at 11:44:23PM +0100, Arnd Bergmann wrote:
> > versatile_defconfig has not been a reasonable default for a very long
> > time, there is very little work happening on this platform and it's
> > based on an old ARM926 CPU core.
> >
> > This changes the default to multi_v7_defconfig, which is much more
> > relevant to anyone doing a build test on ARM, as it covers a wide
> > range of platforms.
> >
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> >
> > diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> > index 2c2b28ee4811..e9fb67913e6e 100644
> > --- a/arch/arm/Makefile
> > +++ b/arch/arm/Makefile
> > @@ -30,9 +30,8 @@ GZFLAGS :=-9
> > # Never generate .eh_frame
> > KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
> >
> > -# Do not use arch/arm/defconfig - it's always outdated.
> > -# Select a platform tht is kept up-to-date
> > -KBUILD_DEFCONFIG := versatile_defconfig
> > +# This should work on most of the modern platforms
> > +KBUILD_DEFCONFIG := multi_v7_defconfig
> >
> > # defines filename extension depending memory management type.
> > ifeq ($(CONFIG_MMU),)
>
> Acked-by: Will Deacon <will.deacon@arm.com>
...
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
I've applied this patch to the next/defconfig branch of arm-soc now,
as it seems to fit in with the defconfig changes better than in Russell's
tree.
Thanks,
Arnd
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-31 15:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-18 22:44 [PATCH] ARM: default to multi_v7_defconfig Arnd Bergmann
2015-12-22 10:06 ` Linus Walleij
2015-12-22 10:18 ` Will Deacon
2015-12-31 15:11 ` Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).