Config.in 2.5 KB

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