Config.in 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. source "tmp/.config-target.in"
  2. # Kernel/Hardware features
  3. config HAS_FPU
  4. bool
  5. config AUDIO_SUPPORT
  6. bool
  7. config DISPLAY_SUPPORT
  8. bool
  9. config GPIO_SUPPORT
  10. bool
  11. config PCI_SUPPORT
  12. select AUDIO_SUPPORT
  13. bool
  14. config PCIE_SUPPORT
  15. bool
  16. config PCMCIA_SUPPORT
  17. bool
  18. config USB_SUPPORT
  19. select AUDIO_SUPPORT
  20. bool
  21. config USB_GADGET_SUPPORT
  22. bool
  23. config BIG_ENDIAN
  24. bool
  25. config USES_INITRAMFS
  26. bool
  27. config USES_SQUASHFS
  28. bool
  29. config USES_JFFS2
  30. bool
  31. config USES_EXT2
  32. bool
  33. config USES_TARGZ
  34. bool
  35. config USES_CPIOGZ
  36. bool
  37. config USES_UBIFS
  38. bool
  39. config PROFILE_KCONFIG
  40. bool
  41. config NOMMU
  42. bool
  43. # Architecture selection
  44. config arm
  45. bool
  46. config armeb
  47. select BIG_ENDIAN
  48. bool
  49. config avr32
  50. select BIG_ENDIAN
  51. bool
  52. config cris
  53. bool
  54. config i386
  55. bool
  56. config i686
  57. bool
  58. config m68k
  59. bool
  60. config mips
  61. select BIG_ENDIAN
  62. bool
  63. config mipsel
  64. bool
  65. config mips64
  66. select BIG_ENDIAN
  67. bool
  68. config mips64el
  69. bool
  70. config powerpc
  71. select BIG_ENDIAN
  72. bool
  73. config powerpc64
  74. select BIG_ENDIAN
  75. bool
  76. config sh3
  77. bool
  78. config sh3eb
  79. select BIG_ENDIAN
  80. bool
  81. config sh4
  82. bool
  83. config sh4eb
  84. select BIG_ENDIAN
  85. bool
  86. config sparc
  87. select BIG_ENDIAN
  88. bool
  89. config ubicom32
  90. select BIG_ENDIAN
  91. bool
  92. config x86_64
  93. bool
  94. config ARCH
  95. string
  96. default "arm" if arm
  97. default "armeb" if armeb
  98. default "avr32" if avr32
  99. default "cris" if cris
  100. default "i386" if i386
  101. default "i686" if i686
  102. default "m68k" if m68k
  103. default "mips" if mips
  104. default "mipsel" if mipsel
  105. default "mips64" if mips64
  106. default "mips64el" if mips64el
  107. default "powerpc" if powerpc
  108. default "sh3" if sh3
  109. default "sh3eb" if sh3eb
  110. default "sh4" if sh4
  111. default "sh4eb" if sh4eb
  112. default "sparc" if sparc
  113. default "ubicom32" if ubicom32
  114. default "x86_64" if x86_64