Config.in 2.0 KB

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