Config.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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 EMMC_SUPPORT
  70. bool
  71. config NAND_SUPPORT
  72. bool
  73. config LEGACY_SDCARD_SUPPORT
  74. bool
  75. config ARCH_64BIT
  76. bool
  77. config VIRTIO_SUPPORT
  78. bool
  79. config USES_ROOTFS_PART
  80. bool
  81. config USES_BOOT_PART
  82. bool
  83. # Architecture selection
  84. config aarch64
  85. select ARCH_64BIT
  86. bool
  87. config aarch64_be
  88. select ARCH_64BIT
  89. select BIG_ENDIAN
  90. bool
  91. config arc
  92. bool
  93. config arceb
  94. select BIG_ENDIAN
  95. bool
  96. config arm
  97. bool
  98. config armeb
  99. select BIG_ENDIAN
  100. bool
  101. config arm_v6
  102. bool
  103. config arm_v7
  104. bool
  105. config i386
  106. bool
  107. config i686
  108. bool
  109. config m68k
  110. bool
  111. config mips
  112. select BIG_ENDIAN
  113. bool
  114. config mipsel
  115. bool
  116. config mips64
  117. select BIG_ENDIAN
  118. select ARCH_64BIT
  119. bool
  120. config mips64el
  121. select ARCH_64BIT
  122. bool
  123. config powerpc
  124. select BIG_ENDIAN
  125. bool
  126. config powerpc64
  127. select BIG_ENDIAN
  128. select ARCH_64BIT
  129. bool
  130. config riscv64
  131. select ARCH_64BIT
  132. bool
  133. config sh3
  134. bool
  135. config sh3eb
  136. select BIG_ENDIAN
  137. bool
  138. config sh4
  139. bool
  140. config sh4eb
  141. select BIG_ENDIAN
  142. bool
  143. config sparc
  144. select BIG_ENDIAN
  145. bool
  146. config x86_64
  147. select ARCH_64BIT
  148. bool
  149. config ARCH
  150. string
  151. default "aarch64" if aarch64
  152. default "aarch64_be" if aarch64_be
  153. default "arc" if arc
  154. default "arceb" if arceb
  155. default "arm" if arm
  156. default "armeb" if armeb
  157. default "i386" if i386
  158. default "i686" if i686
  159. default "m68k" if m68k
  160. default "mips" if mips
  161. default "mipsel" if mipsel
  162. default "mips64" if mips64
  163. default "mips64el" if mips64el
  164. default "powerpc" if powerpc
  165. default "powerpc64" if powerpc64
  166. default "riscv64" if riscv64
  167. default "sh3" if sh3
  168. default "sh3eb" if sh3eb
  169. default "sh4" if sh4
  170. default "sh4eb" if sh4eb
  171. default "sparc" if sparc
  172. default "x86_64" if x86_64