Config.in 2.6 KB

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