diff options
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 3f48e35ee61a..2c32c8702cfd 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -273,6 +273,14 @@ config ARCH_L7200 | |||
273 | If you have any questions or comments about the Linux kernel port | 273 | If you have any questions or comments about the Linux kernel port |
274 | to this board, send e-mail to <sjhill@cotw.com>. | 274 | to this board, send e-mail to <sjhill@cotw.com>. |
275 | 275 | ||
276 | config ARCH_NS9XXX | ||
277 | bool "NetSilicon NS9xxx" | ||
278 | help | ||
279 | Say Y here if you intend to run this kernel on a NetSilicon NS9xxx | ||
280 | System. | ||
281 | |||
282 | <http://www.digi.com/products/microprocessors/index.jsp> | ||
283 | |||
276 | config ARCH_PNX4008 | 284 | config ARCH_PNX4008 |
277 | bool "Philips Nexperia PNX4008 Mobile" | 285 | bool "Philips Nexperia PNX4008 Mobile" |
278 | help | 286 | help |
@@ -282,6 +290,7 @@ config ARCH_PXA | |||
282 | bool "PXA2xx-based" | 290 | bool "PXA2xx-based" |
283 | depends on MMU | 291 | depends on MMU |
284 | select ARCH_MTD_XIP | 292 | select ARCH_MTD_XIP |
293 | select GENERIC_TIME | ||
285 | help | 294 | help |
286 | Support for Intel's PXA2XX processor line. | 295 | Support for Intel's PXA2XX processor line. |
287 | 296 | ||
@@ -305,7 +314,7 @@ config ARCH_SA1100 | |||
305 | Support for StrongARM 11x0 based boards. | 314 | Support for StrongARM 11x0 based boards. |
306 | 315 | ||
307 | config ARCH_S3C2410 | 316 | config ARCH_S3C2410 |
308 | bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442" | 317 | bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442, S3C2443" |
309 | help | 318 | help |
310 | Samsung S3C2410X CPU based systems, such as the Simtec Electronics | 319 | Samsung S3C2410X CPU based systems, such as the Simtec Electronics |
311 | BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or | 320 | BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or |
@@ -365,7 +374,16 @@ source "arch/arm/mach-omap1/Kconfig" | |||
365 | 374 | ||
366 | source "arch/arm/mach-omap2/Kconfig" | 375 | source "arch/arm/mach-omap2/Kconfig" |
367 | 376 | ||
377 | source "arch/arm/plat-s3c24xx/Kconfig" | ||
378 | |||
379 | if ARCH_S3C2410 | ||
380 | source "arch/arm/mach-s3c2400/Kconfig" | ||
368 | source "arch/arm/mach-s3c2410/Kconfig" | 381 | source "arch/arm/mach-s3c2410/Kconfig" |
382 | source "arch/arm/mach-s3c2412/Kconfig" | ||
383 | source "arch/arm/mach-s3c2440/Kconfig" | ||
384 | source "arch/arm/mach-s3c2442/Kconfig" | ||
385 | source "arch/arm/mach-s3c2443/Kconfig" | ||
386 | endif | ||
369 | 387 | ||
370 | source "arch/arm/mach-lh7a40x/Kconfig" | 388 | source "arch/arm/mach-lh7a40x/Kconfig" |
371 | 389 | ||
@@ -379,10 +397,12 @@ source "arch/arm/mach-aaec2000/Kconfig" | |||
379 | 397 | ||
380 | source "arch/arm/mach-realview/Kconfig" | 398 | source "arch/arm/mach-realview/Kconfig" |
381 | 399 | ||
382 | source "arch/arm/mach-at91rm9200/Kconfig" | 400 | source "arch/arm/mach-at91/Kconfig" |
383 | 401 | ||
384 | source "arch/arm/mach-netx/Kconfig" | 402 | source "arch/arm/mach-netx/Kconfig" |
385 | 403 | ||
404 | source "arch/arm/mach-ns9xxx/Kconfig" | ||
405 | |||
386 | # Definitions to make life easier | 406 | # Definitions to make life easier |
387 | config ARCH_ACORN | 407 | config ARCH_ACORN |
388 | bool | 408 | bool |
@@ -740,6 +760,20 @@ config XIP_PHYS_ADDR | |||
740 | be linked for and stored to. This address is dependent on your | 760 | be linked for and stored to. This address is dependent on your |
741 | own flash usage. | 761 | own flash usage. |
742 | 762 | ||
763 | config KEXEC | ||
764 | bool "Kexec system call (EXPERIMENTAL)" | ||
765 | depends on EXPERIMENTAL | ||
766 | help | ||
767 | kexec is a system call that implements the ability to shutdown your | ||
768 | current kernel, and to start another kernel. It is like a reboot | ||
769 | but it is indepedent of the system firmware. And like a reboot | ||
770 | you can start any kernel with it, not just Linux. | ||
771 | |||
772 | It is an ongoing process to be certain the hardware in a machine | ||
773 | is properly shutdown, so do not be surprised if this code does not | ||
774 | initially work for you. It may help to enable device hotplugging | ||
775 | support. | ||
776 | |||
743 | endmenu | 777 | endmenu |
744 | 778 | ||
745 | if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX ) | 779 | if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX ) |