Config.in 1.7 KB

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