Config.in 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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_UBIFS
  46. bool
  47. select NAND_SUPPORT
  48. config LOW_MEMORY_FOOTPRINT
  49. bool
  50. config NOMMU
  51. bool
  52. config HAS_MIPS16
  53. depends on (mips || mipsel || mips64 || mips64el)
  54. bool
  55. config RFKILL_SUPPORT
  56. bool
  57. config NAND_SUPPORT
  58. bool
  59. config ARCH_64BIT
  60. bool
  61. # Architecture selection
  62. config aarch64
  63. select ARCH_64BIT
  64. bool
  65. config aarch64_be
  66. select ARCH_64BIT
  67. select BIG_ENDIAN
  68. bool
  69. config arc
  70. bool
  71. config arceb
  72. select BIG_ENDIAN
  73. bool
  74. config arm
  75. bool
  76. config armeb
  77. select BIG_ENDIAN
  78. bool
  79. config arm_v4
  80. bool
  81. config arm_v5
  82. bool
  83. config arm_v6
  84. bool
  85. config arm_v7
  86. bool
  87. config i386
  88. bool
  89. config i686
  90. bool
  91. config m68k
  92. bool
  93. config mips
  94. select BIG_ENDIAN
  95. bool
  96. config mipsel
  97. bool
  98. config mips64
  99. select BIG_ENDIAN
  100. select ARCH_64BIT
  101. bool
  102. config mips64el
  103. select ARCH_64BIT
  104. bool
  105. config powerpc
  106. select BIG_ENDIAN
  107. bool
  108. config powerpc64
  109. select BIG_ENDIAN
  110. select ARCH_64BIT
  111. bool
  112. config sh3
  113. bool
  114. config sh3eb
  115. select BIG_ENDIAN
  116. bool
  117. config sh4
  118. bool
  119. config sh4eb
  120. select BIG_ENDIAN
  121. bool
  122. config sparc
  123. select BIG_ENDIAN
  124. bool
  125. config x86_64
  126. select ARCH_64BIT
  127. bool
  128. config ARCH
  129. string
  130. default "aarch64" if aarch64
  131. default "aarch64_be" if aarch64_be
  132. default "arc" if arc
  133. default "arceb" if arceb
  134. default "arm" if arm
  135. default "armeb" if armeb
  136. default "i386" if i386
  137. default "i686" if i686
  138. default "m68k" if m68k
  139. default "mips" if mips
  140. default "mipsel" if mipsel
  141. default "mips64" if mips64
  142. default "mips64el" if mips64el
  143. default "powerpc" if powerpc
  144. default "sh3" if sh3
  145. default "sh3eb" if sh3eb
  146. default "sh4" if sh4
  147. default "sh4eb" if sh4eb
  148. default "sparc" if sparc
  149. default "x86_64" if x86_64