Config.in 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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 PINCTRL_SUPPORT
  25. bool
  26. config PWM_SUPPORT
  27. bool
  28. config USB_SUPPORT
  29. select AUDIO_SUPPORT
  30. bool
  31. config USB_GADGET_SUPPORT
  32. bool
  33. config RTC_SUPPORT
  34. bool
  35. config BIG_ENDIAN
  36. bool
  37. config USES_PM
  38. bool
  39. config USES_DEVICETREE
  40. bool
  41. config USES_INITRAMFS
  42. bool
  43. config USES_SEPARATE_INITRAMFS
  44. bool
  45. config USES_SQUASHFS
  46. bool
  47. config USES_JFFS2
  48. bool
  49. config USES_JFFS2_NAND
  50. bool
  51. config USES_EXT4
  52. bool
  53. config USES_EROFS
  54. bool
  55. config USES_TARGZ
  56. bool
  57. config USES_CPIOGZ
  58. bool
  59. config USES_MINOR
  60. bool
  61. config USES_UBIFS
  62. bool
  63. select NAND_SUPPORT
  64. config LOW_MEMORY_FOOTPRINT
  65. bool
  66. config SMALL_FLASH
  67. bool
  68. config NOMMU
  69. bool
  70. config HAS_MIPS16
  71. depends on (mips || mipsel || mips64 || mips64el)
  72. bool
  73. config RFKILL_SUPPORT
  74. bool
  75. config EMMC_SUPPORT
  76. bool
  77. config NAND_SUPPORT
  78. bool
  79. config LEGACY_SDCARD_SUPPORT
  80. bool
  81. config ARCH_64BIT
  82. bool
  83. config VIRTIO_SUPPORT
  84. bool
  85. config USES_ROOTFS_PART
  86. bool
  87. config USES_BOOT_PART
  88. bool
  89. # Architecture selection
  90. config aarch64
  91. select ARCH_64BIT
  92. bool
  93. config aarch64_be
  94. select ARCH_64BIT
  95. select BIG_ENDIAN
  96. bool
  97. config arc
  98. bool
  99. config arceb
  100. select BIG_ENDIAN
  101. bool
  102. config arm
  103. bool
  104. config armeb
  105. select BIG_ENDIAN
  106. bool
  107. config arm_v6
  108. bool
  109. config arm_v7
  110. bool
  111. config i386
  112. bool
  113. config i686
  114. bool
  115. config loongarch64
  116. select ARCH_64BIT
  117. bool
  118. config m68k
  119. bool
  120. config mips
  121. select BIG_ENDIAN
  122. bool
  123. config mipsel
  124. bool
  125. config mips64
  126. select BIG_ENDIAN
  127. select ARCH_64BIT
  128. bool
  129. config mips64el
  130. select ARCH_64BIT
  131. bool
  132. config powerpc
  133. select BIG_ENDIAN
  134. bool
  135. config powerpc64
  136. select BIG_ENDIAN
  137. select ARCH_64BIT
  138. bool
  139. config riscv64
  140. select ARCH_64BIT
  141. bool
  142. config sh3
  143. bool
  144. config sh3eb
  145. select BIG_ENDIAN
  146. bool
  147. config sh4
  148. bool
  149. config sh4eb
  150. select BIG_ENDIAN
  151. bool
  152. config sparc
  153. select BIG_ENDIAN
  154. bool
  155. config x86_64
  156. select ARCH_64BIT
  157. bool
  158. config ARCH
  159. string
  160. default "aarch64" if aarch64
  161. default "aarch64_be" if aarch64_be
  162. default "arc" if arc
  163. default "arceb" if arceb
  164. default "arm" if arm
  165. default "armeb" if armeb
  166. default "i386" if i386
  167. default "i686" if i686
  168. default "loongarch64" if loongarch64
  169. default "m68k" if m68k
  170. default "mips" if mips
  171. default "mipsel" if mipsel
  172. default "mips64" if mips64
  173. default "mips64el" if mips64el
  174. default "powerpc" if powerpc
  175. default "powerpc64" if powerpc64
  176. default "riscv64" if riscv64
  177. default "sh3" if sh3
  178. default "sh3eb" if sh3eb
  179. default "sh4" if sh4
  180. default "sh4eb" if sh4eb
  181. default "sparc" if sparc
  182. default "x86_64" if x86_64