Config.in 1.8 KB

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