diff options
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 28 |
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 | ||
313 | config ARCH_S3C2410 | 314 | config 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 | ||
372 | source "arch/arm/mach-omap2/Kconfig" | 373 | source "arch/arm/mach-omap2/Kconfig" |
373 | 374 | ||
375 | source "arch/arm/plat-s3c24xx/Kconfig" | ||
376 | |||
377 | if ARCH_S3C2410 | ||
378 | source "arch/arm/mach-s3c2400/Kconfig" | ||
374 | source "arch/arm/mach-s3c2410/Kconfig" | 379 | source "arch/arm/mach-s3c2410/Kconfig" |
380 | source "arch/arm/mach-s3c2412/Kconfig" | ||
381 | source "arch/arm/mach-s3c2440/Kconfig" | ||
382 | source "arch/arm/mach-s3c2442/Kconfig" | ||
383 | source "arch/arm/mach-s3c2443/Kconfig" | ||
384 | endif | ||
375 | 385 | ||
376 | source "arch/arm/mach-lh7a40x/Kconfig" | 386 | source "arch/arm/mach-lh7a40x/Kconfig" |
377 | 387 | ||
@@ -385,7 +395,7 @@ source "arch/arm/mach-aaec2000/Kconfig" | |||
385 | 395 | ||
386 | source "arch/arm/mach-realview/Kconfig" | 396 | source "arch/arm/mach-realview/Kconfig" |
387 | 397 | ||
388 | source "arch/arm/mach-at91rm9200/Kconfig" | 398 | source "arch/arm/mach-at91/Kconfig" |
389 | 399 | ||
390 | source "arch/arm/mach-netx/Kconfig" | 400 | source "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 | ||
761 | config 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 | |||
751 | endmenu | 775 | endmenu |
752 | 776 | ||
753 | if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX ) | 777 | if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX ) |