Config.in 2.4 KB

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