Config.in 2.5 KB

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