Config.in 1.3 KB

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