aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-02-08 07:19:31 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-08 12:22:30 -0500
commitb920de1b77b72ca9432ac3f97edb26541e65e5dd (patch)
tree40fa9be1470e929c47927dea7eddf184c0204229 /lib
parentef3d534754f31fed9c3b976fee1ece1b3bc38282 (diff)
mn10300: add the MN10300/AM33 architecture to the kernel
Add architecture support for the MN10300/AM33 CPUs produced by MEI to the kernel. This patch also adds board support for the ASB2303 with the ASB2308 daughter board, and the ASB2305. The only processor supported is the MN103E010, which is an AM33v2 core plus on-chip devices. [akpm@linux-foundation.org: nuke cvs control strings] Signed-off-by: Masakazu Urade <urade.masakazu@jp.panasonic.com> Signed-off-by: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/Kconfig.debug7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 4f4008fc73e4..ce0bb2600c25 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -404,7 +404,8 @@ config DEBUG_HIGHMEM
404config DEBUG_BUGVERBOSE 404config DEBUG_BUGVERBOSE
405 bool "Verbose BUG() reporting (adds 70K)" if DEBUG_KERNEL && EMBEDDED 405 bool "Verbose BUG() reporting (adds 70K)" if DEBUG_KERNEL && EMBEDDED
406 depends on BUG 406 depends on BUG
407 depends on ARM || AVR32 || M32R || M68K || SPARC32 || SPARC64 || FRV || SUPERH || GENERIC_BUG || BLACKFIN 407 depends on ARM || AVR32 || M32R || M68K || SPARC32 || SPARC64 || \
408 FRV || SUPERH || GENERIC_BUG || BLACKFIN || MN10300
408 default !EMBEDDED 409 default !EMBEDDED
409 help 410 help
410 Say Y here to make BUG() panics output the file name and line number 411 Say Y here to make BUG() panics output the file name and line number
@@ -454,7 +455,9 @@ config DEBUG_SG
454 455
455config FRAME_POINTER 456config FRAME_POINTER
456 bool "Compile the kernel with frame pointers" 457 bool "Compile the kernel with frame pointers"
457 depends on DEBUG_KERNEL && (X86 || CRIS || M68K || M68KNOMMU || FRV || UML || S390 || AVR32 || SUPERH || BLACKFIN) 458 depends on DEBUG_KERNEL && \
459 (X86 || CRIS || M68K || M68KNOMMU || FRV || UML || S390 || \
460 AVR32 || SUPERH || BLACKFIN || MN10300)
458 default y if DEBUG_INFO && UML 461 default y if DEBUG_INFO && UML
459 help 462 help
460 If you say Y here the resulting kernel image will be slightly larger 463 If you say Y here the resulting kernel image will be slightly larger