Config.in 2.1 KB

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