Config.in 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. source "tmp/.config-target.in"
  2. # Kernel/Hardware features
  3. config HAS_SPE_FPU
  4. depends 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_EXT4
  36. bool
  37. config USES_TARGZ
  38. bool
  39. config USES_CPIOGZ
  40. bool
  41. config USES_UBIFS
  42. bool
  43. config PROFILE_KCONFIG
  44. bool
  45. config NOMMU
  46. bool
  47. # Architecture selection
  48. config arm
  49. bool
  50. config armeb
  51. select BIG_ENDIAN
  52. bool
  53. config avr32
  54. select BIG_ENDIAN
  55. bool
  56. config cris
  57. bool
  58. config i386
  59. bool
  60. config i686
  61. bool
  62. config m68k
  63. bool
  64. config mips
  65. select BIG_ENDIAN
  66. bool
  67. config mipsel
  68. bool
  69. config mips64
  70. select BIG_ENDIAN
  71. bool
  72. config mips64el
  73. bool
  74. config powerpc
  75. select BIG_ENDIAN
  76. bool
  77. config powerpc64
  78. select BIG_ENDIAN
  79. bool
  80. config sh3
  81. bool
  82. config sh3eb
  83. select BIG_ENDIAN
  84. bool
  85. config sh4
  86. bool
  87. config sh4eb
  88. select BIG_ENDIAN
  89. bool
  90. config sparc
  91. select BIG_ENDIAN
  92. bool
  93. config ubicom32
  94. select BIG_ENDIAN
  95. bool
  96. config x86_64
  97. bool
  98. config ARCH
  99. string
  100. default "arm" if arm
  101. default "armeb" if armeb
  102. default "avr32" if avr32
  103. default "cris" if cris
  104. default "i386" if i386
  105. default "i686" if i686
  106. default "m68k" if m68k
  107. default "mips" if mips
  108. default "mipsel" if mipsel
  109. default "mips64" if mips64
  110. default "mips64el" if mips64el
  111. default "powerpc" if powerpc
  112. default "sh3" if sh3
  113. default "sh3eb" if sh3eb
  114. default "sh4" if sh4
  115. default "sh4eb" if sh4eb
  116. default "sparc" if sparc
  117. default "ubicom32" if ubicom32
  118. default "x86_64" if x86_64