* [PATCH]: Fix arm kconfig
@ 2010-08-10 19:42 xsecute at googlemail.com
2010-08-10 19:56 ` Russell King - ARM Linux
2010-08-10 20:07 ` Uwe Kleine-König
0 siblings, 2 replies; 5+ messages in thread
From: xsecute at googlemail.com @ 2010-08-10 19:42 UTC (permalink / raw)
To: linux-arm-kernel
Hi Russell,
i get an nerror if i try: make ARCH=arm CROSS_COMPILE=arm-eabi
Output:
scripts/kconfig/mconf arch/arm/Kconfig
arch/arm/Kconfig:1187: invalid option
make[1]: *** [menuconfig] Error 1
make: *** [menuconfig] Error 2
--------------------------------------------------------
The following patch fix that.
==========================
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 232f0c7..684c1a1 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1184,8 +1184,8 @@ config LOCAL_TIMERS
REALVIEW_EB_A9MP || MACH_REALVIEW_PBX || ARCH_OMAP4 || \
ARCH_U8500 || ARCH_VEXPRESS_CA9X4 || ARCH_TEGRA)
default y
- select HAVE_ARM_TWD if (ARCH_REALVIEW || ARCH_VEXPRESS ||
ARCH_OMAP4 || \\
- ARCH_U8500 || ARCH_TEGRA
+ select HAVE_ARM_TWD if (ARCH_REALVIEW || ARCH_VEXPRESS ||
ARCH_OMAP4 || \
+ ARCH_U8500 || ARCH_TEGRA)
help
Enable support for local timers on SMP platforms, rather then the
legacy IPI broadcast method. Local timers allows the system
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH]: Fix arm kconfig
2010-08-10 19:42 [PATCH]: Fix arm kconfig xsecute at googlemail.com
@ 2010-08-10 19:56 ` Russell King - ARM Linux
2010-08-10 20:07 ` Uwe Kleine-König
1 sibling, 0 replies; 5+ messages in thread
From: Russell King - ARM Linux @ 2010-08-10 19:56 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Aug 10, 2010 at 09:42:12PM +0200, xsecute at googlemail.com wrote:
> Hi Russell,
>
> i get an nerror if i try: make ARCH=arm CROSS_COMPILE=arm-eabi
Yes, Erik Miao reported it yesterday, and I suggested getting rid of the
paren which isn't actually required. Unfortuantely, I'm still waiting
for that to happen... and land in the patch system.
Instead, the patch system seems to be filling with stuff for the next
merge window...
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH]: Fix arm kconfig
2010-08-10 19:42 [PATCH]: Fix arm kconfig xsecute at googlemail.com
2010-08-10 19:56 ` Russell King - ARM Linux
@ 2010-08-10 20:07 ` Uwe Kleine-König
2010-08-10 20:14 ` [PATCH] ARM: fix syntax error in main Kconfig file Uwe Kleine-König
1 sibling, 1 reply; 5+ messages in thread
From: Uwe Kleine-König @ 2010-08-10 20:07 UTC (permalink / raw)
To: linux-arm-kernel
Hello,
On Tue, Aug 10, 2010 at 09:42:12PM +0200, xsecute at googlemail.com wrote:
> Hi Russell,
>
> i get an nerror if i try: make ARCH=arm CROSS_COMPILE=arm-eabi
This is the third patch for this problem and nobody did what Russell
requested. Will follow up with a patch.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: fix syntax error in main Kconfig file
2010-08-10 20:07 ` Uwe Kleine-König
@ 2010-08-10 20:14 ` Uwe Kleine-König
2010-08-10 22:14 ` Russell King - ARM Linux
0 siblings, 1 reply; 5+ messages in thread
From: Uwe Kleine-König @ 2010-08-10 20:14 UTC (permalink / raw)
To: linux-arm-kernel
This fixes:
scripts/kconfig/mconf arch/arm/Kconfig
arch/arm/Kconfig:1187: invalid option
make[1]: *** [menuconfig] Error 1
make: *** [menuconfig] Error 2
which was introduced by
1cea732 ([ARM] tegra: SMP support)
Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Cc: Tanmay Upadhyay <tanmay.upadhyay@einfochips.com>
Cc: xsecute at googlemail.com
Cc: Eric Miao <eric.y.miao@gmail.com>
Cc: Colin Cross <ccross@android.com>
---
KernelVersion: v2.6.35-3374-g1cea732
arch/arm/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 232f0c7..952ded5 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1184,7 +1184,7 @@ config LOCAL_TIMERS
REALVIEW_EB_A9MP || MACH_REALVIEW_PBX || ARCH_OMAP4 || \
ARCH_U8500 || ARCH_VEXPRESS_CA9X4 || ARCH_TEGRA)
default y
- select HAVE_ARM_TWD if (ARCH_REALVIEW || ARCH_VEXPRESS || ARCH_OMAP4 || \\
+ select HAVE_ARM_TWD if ARCH_REALVIEW || ARCH_VEXPRESS || ARCH_OMAP4 || \\
ARCH_U8500 || ARCH_TEGRA
help
Enable support for local timers on SMP platforms, rather then the
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] ARM: fix syntax error in main Kconfig file
2010-08-10 20:14 ` [PATCH] ARM: fix syntax error in main Kconfig file Uwe Kleine-König
@ 2010-08-10 22:14 ` Russell King - ARM Linux
0 siblings, 0 replies; 5+ messages in thread
From: Russell King - ARM Linux @ 2010-08-10 22:14 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Aug 10, 2010 at 10:14:12PM +0200, Uwe Kleine-K?nig wrote:
> - select HAVE_ARM_TWD if (ARCH_REALVIEW || ARCH_VEXPRESS || ARCH_OMAP4 || \\
> + select HAVE_ARM_TWD if ARCH_REALVIEW || ARCH_VEXPRESS || ARCH_OMAP4 || \\
This is still crap. '\\' on the end of the line...
And no surprises that I'm getting conflicts when merging my master and
devel branches here. Don't bother submitting a new patch, I'll fix it
in the conflict resolution.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-08-10 22:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-10 19:42 [PATCH]: Fix arm kconfig xsecute at googlemail.com
2010-08-10 19:56 ` Russell King - ARM Linux
2010-08-10 20:07 ` Uwe Kleine-König
2010-08-10 20:14 ` [PATCH] ARM: fix syntax error in main Kconfig file Uwe Kleine-König
2010-08-10 22:14 ` Russell King - ARM Linux
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).