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 6783c2e5512d..195650935c78 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -280,6 +280,7 @@ config ARCH_PXA
280 bool "PXA2xx-based" 280 bool "PXA2xx-based"
281 depends on MMU 281 depends on MMU
282 select ARCH_MTD_XIP 282 select ARCH_MTD_XIP
283 select GENERIC_TIME
283 help 284 help
284 Support for Intel's PXA2XX processor line. 285 Support for Intel's PXA2XX processor line.
285 286
@@ -303,7 +304,7 @@ config ARCH_SA1100
303 Support for StrongARM 11x0 based boards. 304 Support for StrongARM 11x0 based boards.
304 305
305config ARCH_S3C2410 306config ARCH_S3C2410
306 bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442" 307 bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442, S3C2443"
307 help 308 help
308 Samsung S3C2410X CPU based systems, such as the Simtec Electronics 309 Samsung S3C2410X CPU based systems, such as the Simtec Electronics
309 BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or 310 BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
@@ -363,7 +364,16 @@ source "arch/arm/mach-omap1/Kconfig"
363 364
364source "arch/arm/mach-omap2/Kconfig" 365source "arch/arm/mach-omap2/Kconfig"
365 366
367source "arch/arm/plat-s3c24xx/Kconfig"
368
369if ARCH_S3C2410
370source "arch/arm/mach-s3c2400/Kconfig"
366source "arch/arm/mach-s3c2410/Kconfig" 371source "arch/arm/mach-s3c2410/Kconfig"
372source "arch/arm/mach-s3c2412/Kconfig"
373source "arch/arm/mach-s3c2440/Kconfig"
374source "arch/arm/mach-s3c2442/Kconfig"
375source "arch/arm/mach-s3c2443/Kconfig"
376endif
367 377
368source "arch/arm/mach-lh7a40x/Kconfig" 378source "arch/arm/mach-lh7a40x/Kconfig"
369 379
@@ -377,7 +387,7 @@ source "arch/arm/mach-aaec2000/Kconfig"
377 387
378source "arch/arm/mach-realview/Kconfig" 388source "arch/arm/mach-realview/Kconfig"
379 389
380source "arch/arm/mach-at91rm9200/Kconfig" 390source "arch/arm/mach-at91/Kconfig"
381 391
382source "arch/arm/mach-netx/Kconfig" 392source "arch/arm/mach-netx/Kconfig"
383 393
@@ -738,6 +748,20 @@ config XIP_PHYS_ADDR
738 be linked for and stored to. This address is dependent on your 748 be linked for and stored to. This address is dependent on your
739 own flash usage. 749 own flash usage.
740 750
751config KEXEC
752 bool "Kexec system call (EXPERIMENTAL)"
753 depends on EXPERIMENTAL
754 help
755 kexec is a system call that implements the ability to shutdown your
756 current kernel, and to start another kernel. It is like a reboot
757 but it is indepedent of the system firmware. And like a reboot
758 you can start any kernel with it, not just Linux.
759
760 It is an ongoing process to be certain the hardware in a machine
761 is properly shutdown, so do not be surprised if this code does not
762 initially work for you. It may help to enable device hotplugging
763 support.
764
741endmenu 765endmenu
742 766
743if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX ) 767if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX )