Kconfig (e199e6136ce6b151e6638ae93dca60748424d900) | Kconfig (838a2e55e6a4e9e8a10451ed2ef0f7a08dabdb04) |
---|---|
1# For a description of the syntax of this configuration file, 2# see Documentation/kbuild/kconfig-language.txt. 3# 4 5mainmenu "Linux/SPARC Kernel Configuration" 6 | |
7config 64BIT 8 bool "64-bit kernel" if ARCH = "sparc" 9 default ARCH = "sparc64" 10 help 11 SPARC is a family of RISC microprocessors designed and marketed by 12 Sun Microsystems, incorporated. They are very widely found in Sun 13 workstations and clones. 14 15 Say yes to build a 64-bit kernel - formerly known as sparc64 16 Say no to build a 32-bit kernel - formerly known as sparc 17 18config SPARC 19 bool 20 default y | 1config 64BIT 2 bool "64-bit kernel" if ARCH = "sparc" 3 default ARCH = "sparc64" 4 help 5 SPARC is a family of RISC microprocessors designed and marketed by 6 Sun Microsystems, incorporated. They are very widely found in Sun 7 workstations and clones. 8 9 Say yes to build a 64-bit kernel - formerly known as sparc64 10 Say no to build a 32-bit kernel - formerly known as sparc 11 12config SPARC 13 bool 14 default y |
21 select OF | |
22 select HAVE_IDE 23 select HAVE_OPROFILE 24 select HAVE_ARCH_KGDB if !SMP || SPARC64 25 select HAVE_ARCH_TRACEHOOK 26 select ARCH_WANT_OPTIONAL_GPIOLIB 27 select RTC_CLASS 28 select RTC_DRV_M48T59 29 select HAVE_PERF_EVENTS --- 32 unchanged lines hidden (view full) --- 62 default "arch/sparc/configs/sparc64_defconfig" if SPARC64 63 64# CONFIG_BITS can be used at source level to get 32/64 bits 65config BITS 66 int 67 default 32 if SPARC32 68 default 64 if SPARC64 69 | 15 select HAVE_IDE 16 select HAVE_OPROFILE 17 select HAVE_ARCH_KGDB if !SMP || SPARC64 18 select HAVE_ARCH_TRACEHOOK 19 select ARCH_WANT_OPTIONAL_GPIOLIB 20 select RTC_CLASS 21 select RTC_DRV_M48T59 22 select HAVE_PERF_EVENTS --- 32 unchanged lines hidden (view full) --- 55 default "arch/sparc/configs/sparc64_defconfig" if SPARC64 56 57# CONFIG_BITS can be used at source level to get 32/64 bits 58config BITS 59 int 60 default 32 if SPARC32 61 default 64 if SPARC64 62 |
63config GENERIC_TIME 64 def_bool y 65 |
|
70config ARCH_USES_GETTIMEOFFSET 71 bool 72 default y if SPARC32 73 74config GENERIC_CMOS_UPDATE 75 bool 76 default y 77 --- 63 unchanged lines hidden (view full) --- 141config GENERIC_GPIO 142 bool 143 help 144 Generic GPIO API support 145 146config ARCH_NO_VIRT_TO_BUS 147 def_bool y 148 | 66config ARCH_USES_GETTIMEOFFSET 67 bool 68 default y if SPARC32 69 70config GENERIC_CMOS_UPDATE 71 bool 72 default y 73 --- 63 unchanged lines hidden (view full) --- 137config GENERIC_GPIO 138 bool 139 help 140 Generic GPIO API support 141 142config ARCH_NO_VIRT_TO_BUS 143 def_bool y 144 |
145config OF 146 def_bool y 147 |
|
149config ARCH_SUPPORTS_DEBUG_PAGEALLOC 150 def_bool y if SPARC64 151 152source "init/Kconfig" 153 154source "kernel/Kconfig.freezer" 155 156menu "Processor type and features" --- 416 unchanged lines hidden --- | 148config ARCH_SUPPORTS_DEBUG_PAGEALLOC 149 def_bool y if SPARC64 150 151source "init/Kconfig" 152 153source "kernel/Kconfig.freezer" 154 155menu "Processor type and features" --- 416 unchanged lines hidden --- |