diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2008-02-05 01:30:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:24 -0500 |
commit | 2d33d563b1e2b4748c585e3169f46481e897c829 (patch) | |
tree | 843218ff514dea2f8a33aceafa82495fbcfdbfc4 /arch/cris/arch-v10/Kconfig | |
parent | 7e02dbf7249b1eadeb8b225f1af98701cd1320cc (diff) |
CRIS: avoid using arch links in Kconfig
Improve including of architecture dependent Kconfig files.
- Always include the architecture dependent Kconfig files.
- Wrap architecture dependent Kconfig files inside an appropriate
"if ETRAX_ARCH_Vxx" block.
This makes it possible to run the configuration even without the arch links,
which are created later in the build process.
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/cris/arch-v10/Kconfig')
-rw-r--r-- | arch/cris/arch-v10/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/cris/arch-v10/Kconfig b/arch/cris/arch-v10/Kconfig index f1ce6f64401d..1d61faec77cd 100644 --- a/arch/cris/arch-v10/Kconfig +++ b/arch/cris/arch-v10/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | if ETRAX_ARCH_V10 | ||
2 | |||
1 | # ETRAX 100LX v1 has a MMU "feature" requiring a low mapping | 3 | # ETRAX 100LX v1 has a MMU "feature" requiring a low mapping |
2 | config CRIS_LOW_MAP | 4 | config CRIS_LOW_MAP |
3 | bool | 5 | bool |
@@ -451,3 +453,5 @@ config ETRAX_POWERBUTTON_BIT | |||
451 | default "25" | 453 | default "25" |
452 | help | 454 | help |
453 | Configure where power button is connected. | 455 | Configure where power button is connected. |
456 | |||
457 | endif | ||