Config.in 2.4 KB

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