Config.in 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. source "tmp/.config-target.in"
  2. # Kernel/Hardware features
  3. config HAS_TESTING_KERNEL
  4. bool
  5. config HAS_SPE_FPU
  6. depends on powerpc
  7. select HAS_FPU
  8. bool
  9. config HAS_FPU
  10. bool
  11. config HAS_DT_OVERLAY_SUPPORT
  12. bool
  13. config AUDIO_SUPPORT
  14. bool
  15. config GPIO_SUPPORT
  16. bool
  17. config PCI_SUPPORT
  18. select AUDIO_SUPPORT
  19. bool
  20. config PCIE_SUPPORT
  21. bool
  22. config PCMCIA_SUPPORT
  23. bool
  24. config PWM_SUPPORT
  25. bool
  26. config USB_SUPPORT
  27. select AUDIO_SUPPORT
  28. bool
  29. config USB_GADGET_SUPPORT
  30. bool
  31. config RTC_SUPPORT
  32. bool
  33. config BIG_ENDIAN
  34. bool
  35. config USES_DEVICETREE
  36. bool
  37. config USES_INITRAMFS
  38. bool
  39. config USES_SEPARATE_INITRAMFS
  40. bool
  41. config USES_SQUASHFS
  42. bool
  43. config USES_JFFS2
  44. bool
  45. config USES_JFFS2_NAND
  46. bool
  47. config USES_EXT4
  48. bool
  49. config USES_TARGZ
  50. bool
  51. config USES_CPIOGZ
  52. bool
  53. config USES_MINOR
  54. bool
  55. config USES_UBIFS
  56. bool
  57. select NAND_SUPPORT
  58. config LOW_MEMORY_FOOTPRINT
  59. bool
  60. config SMALL_FLASH
  61. bool
  62. config NOMMU
  63. bool
  64. config HAS_MIPS16
  65. depends on (mips || mipsel || mips64 || mips64el)
  66. bool
  67. config RFKILL_SUPPORT
  68. bool
  69. config NAND_SUPPORT
  70. bool
  71. config LEGACY_SDCARD_SUPPORT
  72. bool
  73. config ARCH_64BIT
  74. bool
  75. config VIRTIO_SUPPORT
  76. bool
  77. config USES_ROOTFS_PART
  78. bool
  79. config USES_BOOT_PART
  80. bool
  81. # Architecture selection
  82. config aarch64
  83. select ARCH_64BIT
  84. bool
  85. config aarch64_be
  86. select ARCH_64BIT
  87. select BIG_ENDIAN
  88. bool
  89. config arc
  90. bool
  91. config arceb
  92. select BIG_ENDIAN
  93. bool
  94. config arm
  95. bool
  96. config armeb
  97. select BIG_ENDIAN
  98. bool
  99. config arm_v6
  100. bool
  101. config arm_v7
  102. bool
  103. config i386
  104. bool
  105. config i686
  106. bool
  107. config m68k
  108. bool
  109. config mips
  110. select BIG_ENDIAN
  111. bool
  112. config mipsel
  113. bool
  114. config mips64
  115. select BIG_ENDIAN
  116. select ARCH_64BIT
  117. bool
  118. config mips64el
  119. select ARCH_64BIT
  120. bool
  121. config powerpc
  122. select BIG_ENDIAN
  123. bool
  124. config powerpc64
  125. select BIG_ENDIAN
  126. select ARCH_64BIT
  127. bool
  128. config sh3
  129. bool
  130. config sh3eb
  131. select BIG_ENDIAN
  132. bool
  133. config sh4
  134. bool
  135. config sh4eb
  136. select BIG_ENDIAN
  137. bool
  138. config sparc
  139. select BIG_ENDIAN
  140. bool
  141. config x86_64
  142. select ARCH_64BIT
  143. bool
  144. config ARCH
  145. string
  146. default "aarch64" if aarch64
  147. default "aarch64_be" if aarch64_be
  148. default "arc" if arc
  149. default "arceb" if arceb
  150. default "arm" if arm
  151. default "armeb" if armeb
  152. default "i386" if i386
  153. default "i686" if i686
  154. default "m68k" if m68k
  155. default "mips" if mips
  156. default "mipsel" if mipsel
  157. default "mips64" if mips64
  158. default "mips64el" if mips64el
  159. default "powerpc" if powerpc
  160. default "powerpc64" if powerpc64
  161. default "sh3" if sh3
  162. default "sh3eb" if sh3eb
  163. default "sh4" if sh4
  164. default "sh4eb" if sh4eb
  165. default "sparc" if sparc
  166. default "x86_64" if x86_64