diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-09 10:03:44 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-09 10:03:44 -0800 | 
| commit | 6150c32589d1976ca8a5c987df951088c05a7542 (patch) | |
| tree | 94073696576323ff966e365d8c47b8ecd8372f97 /arch/powerpc/Kconfig | |
| parent | 44637a12f80b80157d9c1bc5b7d6ef09c9e05713 (diff) | |
| parent | be42d5fa3772241b8ecebd443f1fb36247959c54 (diff) | |
| download | linux-6150c32589d1976ca8a5c987df951088c05a7542.tar.bz2 | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge
Diffstat (limited to 'arch/powerpc/Kconfig')
| -rw-r--r-- | arch/powerpc/Kconfig | 30 | 
1 files changed, 24 insertions, 6 deletions
| diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 331483ace0d9..28004f002ec9 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig @@ -47,7 +47,7 @@ config PPC  config EARLY_PRINTK  	bool -	default y if PPC64 +	default y  config COMPAT  	bool @@ -297,6 +297,7 @@ config PPC_PMAC64  	bool  	depends on PPC_PMAC && POWER4  	select U3_DART +	select MPIC_BROKEN_U3  	select GENERIC_TBSYNC  	default y @@ -325,9 +326,7 @@ config PPC_CELL  	select MMIO_NVRAM  config PPC_OF -	bool -	depends on PPC_MULTIPLATFORM	# for now -	default y +	def_bool y  config XICS  	depends on PPC_PSERIES @@ -376,11 +375,28 @@ config CELL_IIC  	bool  	default y +config CRASH_DUMP +	bool "kernel crash dumps (EXPERIMENTAL)" +	depends on PPC_MULTIPLATFORM +	depends on EXPERIMENTAL +	help +	  Build a kernel suitable for use as a kdump capture kernel. +	  The kernel will be linked at a different address than normal, and +	  so can only be used for Kdump. + +	  Don't change this unless you know what you are doing. +  config IBMVIO  	depends on PPC_PSERIES || PPC_ISERIES  	bool  	default y +config IBMEBUS +	depends on PPC_PSERIES +	bool "Support for GX bus based adapters" +	help +	  Bus device driver for GX bus based adapters. +  config PPC_MPC106  	bool  	default n @@ -472,6 +488,7 @@ source arch/powerpc/platforms/embedded6xx/Kconfig  source arch/powerpc/platforms/4xx/Kconfig  source arch/powerpc/platforms/85xx/Kconfig  source arch/powerpc/platforms/8xx/Kconfig +source arch/powerpc/platforms/cell/Kconfig  menu "Kernel options" @@ -575,11 +592,12 @@ config ARCH_SELECT_MEMORY_MODEL  	depends on PPC64  config ARCH_FLATMEM_ENABLE -       def_bool y -       depends on PPC64 && !NUMA +	def_bool y +	depends on (PPC64 && !NUMA) || PPC32  config ARCH_SPARSEMEM_ENABLE  	def_bool y +	depends on PPC64  config ARCH_SPARSEMEM_DEFAULT  	def_bool y |