aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig28
1 files changed, 26 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index c84350868c23..8136d32cd78f 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -288,6 +288,7 @@ config ARCH_PXA
288 bool "PXA2xx-based" 288 bool "PXA2xx-based"
289 depends on MMU 289 depends on MMU
290 select ARCH_MTD_XIP 290 select ARCH_MTD_XIP
291 select GENERIC_TIME
291 help 292 help
292 Support for Intel's PXA2XX processor line. 293 Support for Intel's PXA2XX processor line.
293 294
@@ -311,7 +312,7 @@ config ARCH_SA1100
311 Support for StrongARM 11x0 based boards. 312 Support for StrongARM 11x0 based boards.
312 313
313config ARCH_S3C2410 314config ARCH_S3C2410
314 bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442" 315 bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442, S3C2443"
315 help 316 help
316 Samsung S3C2410X CPU based systems, such as the Simtec Electronics 317 Samsung S3C2410X CPU based systems, such as the Simtec Electronics
317 BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or 318 BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
@@ -371,7 +372,16 @@ source "arch/arm/mach-omap1/Kconfig"
371 372
372source "arch/arm/mach-omap2/Kconfig" 373source "arch/arm/mach-omap2/Kconfig"
373 374
375source "arch/arm/plat-s3c24xx/Kconfig"
376
377if ARCH_S3C2410
378source "arch/arm/mach-s3c2400/Kconfig"
374source "arch/arm/mach-s3c2410/Kconfig" 379source "arch/arm/mach-s3c2410/Kconfig"
380source "arch/arm/mach-s3c2412/Kconfig"
381source "arch/arm/mach-s3c2440/Kconfig"
382source "arch/arm/mach-s3c2442/Kconfig"
383source "arch/arm/mach-s3c2443/Kconfig"
384endif
375 385
376source "arch/arm/mach-lh7a40x/Kconfig" 386source "arch/arm/mach-lh7a40x/Kconfig"
377 387
@@ -385,7 +395,7 @@ source "arch/arm/mach-aaec2000/Kconfig"
385 395
386source "arch/arm/mach-realview/Kconfig" 396source "arch/arm/mach-realview/Kconfig"
387 397
388source "arch/arm/mach-at91rm9200/Kconfig" 398source "arch/arm/mach-at91/Kconfig"
389 399
390source "arch/arm/mach-netx/Kconfig" 400source "arch/arm/mach-netx/Kconfig"
391 401
@@ -748,6 +758,20 @@ config XIP_PHYS_ADDR
748 be linked for and stored to. This address is dependent on your 758 be linked for and stored to. This address is dependent on your
749 own flash usage. 759 own flash usage.
750 760
761config KEXEC
762 bool "Kexec system call (EXPERIMENTAL)"
763 depends on EXPERIMENTAL
764 help
765 kexec is a system call that implements the ability to shutdown your
766 current kernel, and to start another kernel. It is like a reboot
767 but it is indepedent of the system firmware. And like a reboot
768 you can start any kernel with it, not just Linux.
769
770 It is an ongoing process to be certain the hardware in a machine
771 is properly shutdown, so do not be surprised if this code does not
772 initially work for you. It may help to enable device hotplugging
773 support.
774
751endmenu 775endmenu
752 776
753if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX ) 777if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX )