Config.in 2.5 KB

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