Kconfig 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. #
  4. mainmenu "Linux/PowerPC Kernel Configuration"
  5. source "arch/powerpc/platforms/Kconfig.cputype"
  6. config PPC32
  7. bool
  8. default y if !PPC64
  9. config 64BIT
  10. bool
  11. default y if PPC64
  12. config WORD_SIZE
  13. int
  14. default 64 if PPC64
  15. default 32 if !PPC64
  16. config PPC_MERGE
  17. def_bool y
  18. config MMU
  19. bool
  20. default y
  21. config GENERIC_CMOS_UPDATE
  22. def_bool y
  23. config GENERIC_TIME
  24. def_bool y
  25. config GENERIC_TIME_VSYSCALL
  26. def_bool y
  27. config GENERIC_CLOCKEVENTS
  28. def_bool y
  29. config GENERIC_HARDIRQS
  30. bool
  31. default y
  32. config HAVE_SETUP_PER_CPU_AREA
  33. def_bool PPC64
  34. config IRQ_PER_CPU
  35. bool
  36. default y
  37. config RWSEM_GENERIC_SPINLOCK
  38. bool
  39. config RWSEM_XCHGADD_ALGORITHM
  40. bool
  41. default y
  42. config GENERIC_LOCKBREAK
  43. bool
  44. default y
  45. depends on SMP && PREEMPT
  46. config ARCH_HAS_ILOG2_U32
  47. bool
  48. default y
  49. config ARCH_HAS_ILOG2_U64
  50. bool
  51. default y if 64BIT
  52. config GENERIC_HWEIGHT
  53. bool
  54. default y
  55. config GENERIC_CALIBRATE_DELAY
  56. bool
  57. default y
  58. config GENERIC_FIND_NEXT_BIT
  59. bool
  60. default y
  61. config ARCH_NO_VIRT_TO_BUS
  62. def_bool PPC64
  63. config PPC
  64. bool
  65. default y
  66. select HAVE_IDE
  67. select HAVE_OPROFILE
  68. select HAVE_KPROBES
  69. select HAVE_KRETPROBES
  70. select HAVE_LMB
  71. config EARLY_PRINTK
  72. bool
  73. default y
  74. config COMPAT
  75. bool
  76. default y if PPC64
  77. select COMPAT_BINFMT_ELF
  78. config SYSVIPC_COMPAT
  79. bool
  80. depends on COMPAT && SYSVIPC
  81. default y
  82. # All PPC32s use generic nvram driver through ppc_md
  83. config GENERIC_NVRAM
  84. bool
  85. default y if PPC32
  86. config SCHED_NO_NO_OMIT_FRAME_POINTER
  87. bool
  88. default y
  89. config ARCH_MAY_HAVE_PC_FDC
  90. bool
  91. default !PPC_PSERIES || PCI
  92. config PPC_OF
  93. def_bool y
  94. config OF
  95. def_bool y
  96. config PPC_UDBG_16550
  97. bool
  98. default n
  99. config GENERIC_TBSYNC
  100. bool
  101. default y if PPC32 && SMP
  102. default n
  103. config AUDIT_ARCH
  104. bool
  105. default y
  106. config GENERIC_BUG
  107. bool
  108. default y
  109. depends on BUG
  110. config SYS_SUPPORTS_APM_EMULATION
  111. default y if PMAC_APM_EMU
  112. bool
  113. config DEFAULT_UIMAGE
  114. bool
  115. help
  116. Used to allow a board to specify it wants a uImage built by default
  117. default n
  118. config REDBOOT
  119. bool
  120. config HIBERNATE_32
  121. bool
  122. depends on (PPC_PMAC && !SMP) || BROKEN
  123. default y
  124. config HIBERNATE_64
  125. bool
  126. depends on BROKEN || (PPC_PMAC64 && EXPERIMENTAL)
  127. default y
  128. config ARCH_HIBERNATION_POSSIBLE
  129. bool
  130. depends on (PPC64 && HIBERNATE_64) || (PPC32 && HIBERNATE_32)
  131. default y
  132. config ARCH_SUSPEND_POSSIBLE
  133. def_bool y
  134. depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200
  135. config PPC_DCR_NATIVE
  136. bool
  137. default n
  138. config PPC_DCR_MMIO
  139. bool
  140. default n
  141. config PPC_DCR
  142. bool
  143. depends on PPC_DCR_NATIVE || PPC_DCR_MMIO
  144. default y
  145. config PPC_OF_PLATFORM_PCI
  146. bool
  147. depends on PCI
  148. depends on PPC64 # not supported on 32 bits yet
  149. default n
  150. source "init/Kconfig"
  151. source "arch/powerpc/sysdev/Kconfig"
  152. source "arch/powerpc/platforms/Kconfig"
  153. menu "Kernel options"
  154. config HIGHMEM
  155. bool "High memory support"
  156. depends on PPC32
  157. source kernel/time/Kconfig
  158. source kernel/Kconfig.hz
  159. source kernel/Kconfig.preempt
  160. source "fs/Kconfig.binfmt"
  161. config FORCE_MAX_ZONEORDER
  162. int "Maximum zone order"
  163. default "9" if PPC_64K_PAGES
  164. default "13" if PPC64
  165. default "11"
  166. help
  167. The kernel memory allocator divides physically contiguous memory
  168. blocks into "zones", where each zone is a power of two number of
  169. pages. This option selects the largest power of two that the kernel
  170. keeps in the memory allocator. If you need to allocate very large
  171. blocks of physically contiguous memory, then you may need to
  172. increase this value.
  173. This config option is actually maximum order plus one. For example,
  174. a value of 11 means that the largest free memory block is 2^10 pages.
  175. The page size is not necessarily 4KB. For example, on 64-bit
  176. systems, 64KB pages can be enabled via CONFIG_PPC_64K_PAGES. Keep
  177. this in mind when choosing a value for this option.
  178. config HUGETLB_PAGE_SIZE_VARIABLE
  179. bool
  180. depends on HUGETLB_PAGE
  181. default y
  182. config MATH_EMULATION
  183. bool "Math emulation"
  184. depends on 4xx || 8xx || E200 || PPC_MPC832x || E500
  185. ---help---
  186. Some PowerPC chips designed for embedded applications do not have
  187. a floating-point unit and therefore do not implement the
  188. floating-point instructions in the PowerPC instruction set. If you
  189. say Y here, the kernel will include code to emulate a floating-point
  190. unit, which will allow programs that use floating-point
  191. instructions to run.
  192. config 8XX_MINIMAL_FPEMU
  193. bool "Minimal math emulation for 8xx"
  194. depends on 8xx && !MATH_EMULATION
  195. help
  196. Older arch/ppc kernels still emulated a few floating point
  197. instructions such as load and store, even when full math
  198. emulation is disabled. Say "Y" here if you want to preserve
  199. this behavior.
  200. It is recommended that you build a soft-float userspace instead.
  201. config IOMMU_VMERGE
  202. bool "Enable IOMMU virtual merging"
  203. depends on PPC64
  204. default y
  205. help
  206. Cause IO segments sent to a device for DMA to be merged virtually
  207. by the IOMMU when they happen to have been allocated contiguously.
  208. This doesn't add pressure to the IOMMU allocator. However, some
  209. drivers don't support getting large merged segments coming back
  210. from *_map_sg().
  211. Most drivers don't have this problem; it is safe to say Y here.
  212. config IOMMU_HELPER
  213. def_bool PPC64
  214. config HOTPLUG_CPU
  215. bool "Support for enabling/disabling CPUs"
  216. depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
  217. ---help---
  218. Say Y here to be able to disable and re-enable individual
  219. CPUs at runtime on SMP machines.
  220. Say N if you are unsure.
  221. config ARCH_ENABLE_MEMORY_HOTPLUG
  222. def_bool y
  223. config ARCH_HAS_WALK_MEMORY
  224. def_bool y
  225. config ARCH_ENABLE_MEMORY_HOTREMOVE
  226. def_bool y
  227. config KEXEC
  228. bool "kexec system call (EXPERIMENTAL)"
  229. depends on (PPC_PRPMC2800 || PPC_MULTIPLATFORM) && EXPERIMENTAL
  230. help
  231. kexec is a system call that implements the ability to shutdown your
  232. current kernel, and to start another kernel. It is like a reboot
  233. but it is independent of the system firmware. And like a reboot
  234. you can start any kernel with it, not just Linux.
  235. The name comes from the similarity to the exec system call.
  236. It is an ongoing process to be certain the hardware in a machine
  237. is properly shutdown, so do not be surprised if this code does not
  238. initially work for you. It may help to enable device hotplugging
  239. support. As of this writing the exact hardware interface is
  240. strongly in flux, so no good recommendation can be made.
  241. config CRASH_DUMP
  242. bool "Build a kdump crash kernel (EXPERIMENTAL)"
  243. depends on PPC_MULTIPLATFORM && PPC64 && EXPERIMENTAL
  244. help
  245. Build a kernel suitable for use as a kdump capture kernel.
  246. The kernel will be linked at a different address than normal, and
  247. so can only be used for Kdump.
  248. Don't change this unless you know what you are doing.
  249. config PHYP_DUMP
  250. bool "Hypervisor-assisted dump (EXPERIMENTAL)"
  251. depends on PPC_PSERIES && EXPERIMENTAL
  252. help
  253. Hypervisor-assisted dump is meant to be a kdump replacement
  254. offering robustness and speed not possible without system
  255. hypervisor assistence.
  256. If unsure, say "N"
  257. config PPCBUG_NVRAM
  258. bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
  259. default y if PPC_PREP
  260. config IRQ_ALL_CPUS
  261. bool "Distribute interrupts on all CPUs by default"
  262. depends on SMP && !MV64360
  263. help
  264. This option gives the kernel permission to distribute IRQs across
  265. multiple CPUs. Saying N here will route all IRQs to the first
  266. CPU. Generally saying Y is safe, although some problems have been
  267. reported with SMP Power Macintoshes with this option enabled.
  268. config NUMA
  269. bool "NUMA support"
  270. depends on PPC64
  271. default y if SMP && PPC_PSERIES
  272. config NODES_SHIFT
  273. int
  274. default "4"
  275. depends on NEED_MULTIPLE_NODES
  276. config ARCH_SELECT_MEMORY_MODEL
  277. def_bool y
  278. depends on PPC64
  279. config ARCH_FLATMEM_ENABLE
  280. def_bool y
  281. depends on (PPC64 && !NUMA) || PPC32
  282. config ARCH_SPARSEMEM_ENABLE
  283. def_bool y
  284. depends on PPC64
  285. select SPARSEMEM_VMEMMAP_ENABLE
  286. config ARCH_SPARSEMEM_DEFAULT
  287. def_bool y
  288. depends on (SMP && PPC_PSERIES) || PPC_PS3
  289. config ARCH_POPULATES_NODE_MAP
  290. def_bool y
  291. source "mm/Kconfig"
  292. config ARCH_MEMORY_PROBE
  293. def_bool y
  294. depends on MEMORY_HOTPLUG
  295. # Some NUMA nodes have memory ranges that span
  296. # other nodes. Even though a pfn is valid and
  297. # between a node's start and end pfns, it may not
  298. # reside on that node. See memmap_init_zone()
  299. # for details.
  300. config NODES_SPAN_OTHER_NODES
  301. def_bool y
  302. depends on NEED_MULTIPLE_NODES
  303. config PPC_HAS_HASH_64K
  304. bool
  305. depends on PPC64
  306. default n
  307. config PPC_64K_PAGES
  308. bool "64k page size"
  309. depends on PPC64
  310. select PPC_HAS_HASH_64K
  311. help
  312. This option changes the kernel logical page size to 64k. On machines
  313. without processor support for 64k pages, the kernel will simulate
  314. them by loading each individual 4k page on demand transparently,
  315. while on hardware with such support, it will be used to map
  316. normal application pages.
  317. config PPC_SUBPAGE_PROT
  318. bool "Support setting protections for 4k subpages"
  319. depends on PPC_64K_PAGES
  320. help
  321. This option adds support for a system call to allow user programs
  322. to set access permissions (read/write, readonly, or no access)
  323. on the 4k subpages of each 64k page.
  324. config SCHED_SMT
  325. bool "SMT (Hyperthreading) scheduler support"
  326. depends on PPC64 && SMP
  327. help
  328. SMT scheduler support improves the CPU scheduler's decision making
  329. when dealing with POWER5 cpus at a cost of slightly increased
  330. overhead in some places. If unsure say N here.
  331. config PROC_DEVICETREE
  332. bool "Support for device tree in /proc"
  333. depends on PROC_FS
  334. help
  335. This option adds a device-tree directory under /proc which contains
  336. an image of the device tree that the kernel copies from Open
  337. Firmware or other boot firmware. If unsure, say Y here.
  338. config CMDLINE_BOOL
  339. bool "Default bootloader kernel arguments"
  340. config CMDLINE
  341. string "Initial kernel command string"
  342. depends on CMDLINE_BOOL
  343. default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
  344. help
  345. On some platforms, there is currently no way for the boot loader to
  346. pass arguments to the kernel. For these platforms, you can supply
  347. some command-line options at build time by entering them here. In
  348. most cases you will need to specify the root device here.
  349. if !44x || BROKEN
  350. config ARCH_WANTS_FREEZER_CONTROL
  351. def_bool y
  352. depends on ADB_PMU
  353. source kernel/power/Kconfig
  354. endif
  355. config SECCOMP
  356. bool "Enable seccomp to safely compute untrusted bytecode"
  357. depends on PROC_FS
  358. default y
  359. help
  360. This kernel feature is useful for number crunching applications
  361. that may need to compute untrusted bytecode during their
  362. execution. By using pipes or other transports made available to
  363. the process as file descriptors supporting the read/write
  364. syscalls, it's possible to isolate those applications in
  365. their own address space using seccomp. Once seccomp is
  366. enabled via /proc/<pid>/seccomp, it cannot be disabled
  367. and the task is only allowed to execute a few safe syscalls
  368. defined by each seccomp mode.
  369. If unsure, say Y. Only embedded should say N here.
  370. endmenu
  371. config ISA_DMA_API
  372. bool
  373. default !PPC_ISERIES || PCI
  374. menu "Bus options"
  375. config ISA
  376. bool "Support for ISA-bus hardware"
  377. depends on PPC_PREP || PPC_CHRP
  378. select PPC_I8259
  379. help
  380. Find out whether you have ISA slots on your motherboard. ISA is the
  381. name of a bus system, i.e. the way the CPU talks to the other stuff
  382. inside your box. If you have an Apple machine, say N here; if you
  383. have an IBM RS/6000 or pSeries machine or a PReP machine, say Y. If
  384. you have an embedded board, consult your board documentation.
  385. config ZONE_DMA
  386. bool
  387. default y
  388. config GENERIC_ISA_DMA
  389. bool
  390. depends on PPC64 || POWER4 || 6xx && !CPM2
  391. default y
  392. config PPC_INDIRECT_PCI
  393. bool
  394. depends on PCI
  395. default y if 40x || 44x
  396. default n
  397. config EISA
  398. bool
  399. config SBUS
  400. bool
  401. config FSL_SOC
  402. bool
  403. config FSL_PCI
  404. bool
  405. select PPC_INDIRECT_PCI
  406. config 4xx_SOC
  407. bool
  408. # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
  409. config MCA
  410. bool
  411. config PCI
  412. bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_86xx \
  413. || PPC_MPC52xx || (EMBEDDED && (PPC_PSERIES || PPC_ISERIES)) \
  414. || PPC_PS3 || 44x
  415. default y if !40x && !CPM2 && !8xx && !PPC_MPC512x && !PPC_83xx \
  416. && !PPC_85xx && !PPC_86xx
  417. default PCI_PERMEDIA if !4xx && !CPM2 && !8xx
  418. default PCI_QSPAN if !4xx && !CPM2 && 8xx
  419. select ARCH_SUPPORTS_MSI
  420. help
  421. Find out whether your system includes a PCI bus. PCI is the name of
  422. a bus system, i.e. the way the CPU talks to the other stuff inside
  423. your box. If you say Y here, the kernel will include drivers and
  424. infrastructure code to support PCI bus devices.
  425. config PCI_DOMAINS
  426. def_bool PCI
  427. config PCI_SYSCALL
  428. def_bool PCI
  429. config PCI_QSPAN
  430. bool "QSpan PCI"
  431. depends on !4xx && !CPM2 && 8xx
  432. select PPC_I8259
  433. help
  434. Say Y here if you have a system based on a Motorola 8xx-series
  435. embedded processor with a QSPAN PCI interface, otherwise say N.
  436. config PCI_8260
  437. bool
  438. depends on PCI && 8260
  439. select PPC_INDIRECT_PCI
  440. default y
  441. config 8260_PCI9
  442. bool "Enable workaround for MPC826x erratum PCI 9"
  443. depends on PCI_8260 && !8272
  444. default y
  445. choice
  446. prompt "IDMA channel for PCI 9 workaround"
  447. depends on 8260_PCI9
  448. config 8260_PCI9_IDMA1
  449. bool "IDMA1"
  450. config 8260_PCI9_IDMA2
  451. bool "IDMA2"
  452. config 8260_PCI9_IDMA3
  453. bool "IDMA3"
  454. config 8260_PCI9_IDMA4
  455. bool "IDMA4"
  456. endchoice
  457. source "drivers/pci/pcie/Kconfig"
  458. source "drivers/pci/Kconfig"
  459. source "drivers/pcmcia/Kconfig"
  460. source "drivers/pci/hotplug/Kconfig"
  461. endmenu
  462. menu "Advanced setup"
  463. depends on PPC32
  464. config ADVANCED_OPTIONS
  465. bool "Prompt for advanced kernel configuration options"
  466. help
  467. This option will enable prompting for a variety of advanced kernel
  468. configuration options. These options can cause the kernel to not
  469. work if they are set incorrectly, but can be used to optimize certain
  470. aspects of kernel memory management.
  471. Unless you know what you are doing, say N here.
  472. comment "Default settings for advanced configuration options are used"
  473. depends on !ADVANCED_OPTIONS
  474. config HIGHMEM_START_BOOL
  475. bool "Set high memory pool address"
  476. depends on ADVANCED_OPTIONS && HIGHMEM
  477. help
  478. This option allows you to set the base address of the kernel virtual
  479. area used to map high memory pages. This can be useful in
  480. optimizing the layout of kernel virtual memory.
  481. Say N here unless you know what you are doing.
  482. config HIGHMEM_START
  483. hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
  484. default "0xfe000000"
  485. config LOWMEM_SIZE_BOOL
  486. bool "Set maximum low memory"
  487. depends on ADVANCED_OPTIONS
  488. help
  489. This option allows you to set the maximum amount of memory which
  490. will be used as "low memory", that is, memory which the kernel can
  491. access directly, without having to set up a kernel virtual mapping.
  492. This can be useful in optimizing the layout of kernel virtual
  493. memory.
  494. Say N here unless you know what you are doing.
  495. config LOWMEM_SIZE
  496. hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
  497. default "0x30000000"
  498. config KERNEL_START_BOOL
  499. bool "Set custom kernel base address"
  500. depends on ADVANCED_OPTIONS
  501. help
  502. This option allows you to set the kernel virtual address at which
  503. the kernel will map low memory (the kernel image will be linked at
  504. this address). This can be useful in optimizing the virtual memory
  505. layout of the system.
  506. Say N here unless you know what you are doing.
  507. config KERNEL_START
  508. hex "Virtual address of kernel base" if KERNEL_START_BOOL
  509. default "0xc0000000"
  510. config TASK_SIZE_BOOL
  511. bool "Set custom user task size"
  512. depends on ADVANCED_OPTIONS
  513. help
  514. This option allows you to set the amount of virtual address space
  515. allocated to user tasks. This can be useful in optimizing the
  516. virtual memory layout of the system.
  517. Say N here unless you know what you are doing.
  518. config TASK_SIZE
  519. hex "Size of user task space" if TASK_SIZE_BOOL
  520. default "0x80000000" if PPC_PREP || PPC_8xx
  521. default "0xc0000000"
  522. config CONSISTENT_START_BOOL
  523. bool "Set custom consistent memory pool address"
  524. depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
  525. help
  526. This option allows you to set the base virtual address
  527. of the consistent memory pool. This pool of virtual
  528. memory is used to make consistent memory allocations.
  529. config CONSISTENT_START
  530. hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
  531. default "0xfd000000" if (NOT_COHERENT_CACHE && 8xx)
  532. default "0xff100000" if NOT_COHERENT_CACHE
  533. config CONSISTENT_SIZE_BOOL
  534. bool "Set custom consistent memory pool size"
  535. depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
  536. help
  537. This option allows you to set the size of the
  538. consistent memory pool. This pool of virtual memory
  539. is used to make consistent memory allocations.
  540. config CONSISTENT_SIZE
  541. hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
  542. default "0x00200000" if NOT_COHERENT_CACHE
  543. config BOOT_LOAD_BOOL
  544. bool "Set the boot link/load address"
  545. depends on ADVANCED_OPTIONS && !PPC_MULTIPLATFORM
  546. help
  547. This option allows you to set the initial load address of the zImage
  548. or zImage.initrd file. This can be useful if you are on a board
  549. which has a small amount of memory.
  550. Say N here unless you know what you are doing.
  551. config BOOT_LOAD
  552. hex "Link/load address for booting" if BOOT_LOAD_BOOL
  553. default "0x00400000" if 40x || 8xx || 8260
  554. default "0x01000000" if 44x
  555. default "0x00800000"
  556. config PIN_TLB
  557. bool "Pinned Kernel TLBs (860 ONLY)"
  558. depends on ADVANCED_OPTIONS && 8xx
  559. endmenu
  560. if PPC64
  561. config KERNEL_START
  562. hex
  563. default "0xc000000000000000"
  564. endif
  565. source "net/Kconfig"
  566. source "drivers/Kconfig"
  567. source "fs/Kconfig"
  568. # XXX source "arch/ppc/8xx_io/Kconfig"
  569. # XXX source "arch/ppc/8260_io/Kconfig"
  570. source "arch/powerpc/sysdev/qe_lib/Kconfig"
  571. source "lib/Kconfig"
  572. source "arch/powerpc/Kconfig.debug"
  573. source "security/Kconfig"
  574. config KEYS_COMPAT
  575. bool
  576. depends on COMPAT && KEYS
  577. default y
  578. source "crypto/Kconfig"
  579. config PPC_CLOCK
  580. bool
  581. default n
  582. config PPC_LIB_RHEAP
  583. bool