Config.in 1.3 KB

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