Config.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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 loongarch64
  110. select ARCH_64BIT
  111. bool
  112. config m68k
  113. bool
  114. config mips
  115. select BIG_ENDIAN
  116. bool
  117. config mipsel
  118. bool
  119. config mips64
  120. select BIG_ENDIAN
  121. select ARCH_64BIT
  122. bool
  123. config mips64el
  124. select ARCH_64BIT
  125. bool
  126. config powerpc
  127. select BIG_ENDIAN
  128. bool
  129. config powerpc64
  130. select BIG_ENDIAN
  131. select ARCH_64BIT
  132. bool
  133. config riscv64
  134. select ARCH_64BIT
  135. bool
  136. config sh3
  137. bool
  138. config sh3eb
  139. select BIG_ENDIAN
  140. bool
  141. config sh4
  142. bool
  143. config sh4eb
  144. select BIG_ENDIAN
  145. bool
  146. config sparc
  147. select BIG_ENDIAN
  148. bool
  149. config x86_64
  150. select ARCH_64BIT
  151. bool
  152. config ARCH
  153. string
  154. default "aarch64" if aarch64
  155. default "aarch64_be" if aarch64_be
  156. default "arc" if arc
  157. default "arceb" if arceb
  158. default "arm" if arm
  159. default "armeb" if armeb
  160. default "i386" if i386
  161. default "i686" if i686
  162. default "loongarch64" if loongarch64
  163. default "m68k" if m68k
  164. default "mips" if mips
  165. default "mipsel" if mipsel
  166. default "mips64" if mips64
  167. default "mips64el" if mips64el
  168. default "powerpc" if powerpc
  169. default "powerpc64" if powerpc64
  170. default "riscv64" if riscv64
  171. default "sh3" if sh3
  172. default "sh3eb" if sh3eb
  173. default "sh4" if sh4
  174. default "sh4eb" if sh4eb
  175. default "sparc" if sparc
  176. default "x86_64" if x86_64