Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 PROFILE_KCONFIG
  36. bool
  37. # Architecture selection
  38. config i386
  39. bool
  40. config i686
  41. bool
  42. config m68k
  43. select BIG_ENDIAN
  44. bool
  45. config mips
  46. select BIG_ENDIAN
  47. bool
  48. config mipsel
  49. bool
  50. config mips64
  51. select BIG_ENDIAN
  52. bool
  53. config mips64el
  54. bool
  55. config arm
  56. bool
  57. config armeb
  58. select BIG_ENDIAN
  59. bool
  60. config avr32
  61. select BIG_ENDIAN
  62. bool
  63. config cris
  64. bool
  65. config m68k
  66. bool
  67. config powerpc
  68. select BIG_ENDIAN
  69. bool
  70. config sh3
  71. bool
  72. config sh3eb
  73. select BIG_ENDIAN
  74. bool
  75. config sh4
  76. bool
  77. config sh4eb
  78. select BIG_ENDIAN
  79. bool
  80. config sparc
  81. select BIG_ENDIAN
  82. bool
  83. config x86_64
  84. bool
  85. config ARCH
  86. string
  87. default "arm" if arm
  88. default "armeb" if armeb
  89. default "avr32" if avr32
  90. default "cris" if cris
  91. default "i386" if i386
  92. default "i686" if i686
  93. default "m68k" if m68k
  94. default "mips" if mips
  95. default "mipsel" if mipsel
  96. default "mips64" if mips64
  97. default "mips64el" if mips64el
  98. default "powerpc" if powerpc
  99. default "sh3" if sh3
  100. default "sh3eb" if sh3eb
  101. default "sh4" if sh4
  102. default "sh4eb" if sh4eb
  103. default "sparc" if sparc
  104. default "x86_64" if x86_64