Config.in 2.8 KB

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