2
0

Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 PCMCIA_SUPPORT
  16. bool
  17. config USB_SUPPORT
  18. bool
  19. config BIG_ENDIAN
  20. bool
  21. config USES_SQUASHFS
  22. bool
  23. config USES_JFFS2
  24. bool
  25. config USES_EXT2
  26. bool
  27. config USES_TGZ
  28. bool
  29. config USES_CPIOGZ
  30. bool
  31. config PROFILE_KCONFIG
  32. bool
  33. # Architecture selection
  34. config i386
  35. bool
  36. config i686
  37. bool
  38. config mips
  39. select BIG_ENDIAN
  40. bool
  41. config mipsel
  42. bool
  43. config arm
  44. bool
  45. config armeb
  46. select BIG_ENDIAN
  47. bool
  48. config avr32
  49. select BIG_ENDIAN
  50. bool
  51. config cris
  52. bool
  53. config m68k
  54. bool
  55. config powerpc
  56. select BIG_ENDIAN
  57. bool
  58. config sh3
  59. bool
  60. config sh3eb
  61. select BIG_ENDIAN
  62. bool
  63. config sh4
  64. bool
  65. config sh4eb
  66. select BIG_ENDIAN
  67. bool
  68. config sparc
  69. select BIG_ENDIAN
  70. bool
  71. config x86_64
  72. bool
  73. config ARCH
  74. string
  75. default "arm" if arm
  76. default "armeb" if armeb
  77. default "avr32" if avr32
  78. default "cris" if cris
  79. default "i386" if i386
  80. default "i686" if i686
  81. default "m68k" if m68k
  82. default "mips" if mips
  83. default "mipsel" if mipsel
  84. default "powerpc" if powerpc
  85. default "sh3" if sh3
  86. default "sh3eb" if sh3eb
  87. default "sh4" if sh4
  88. default "sh4eb" if sh4eb
  89. default "sparc" if sparc
  90. default "x86_64" if x86_64