Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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 PROFILE_KCONFIG
  26. bool
  27. # Architecture selection
  28. config i386
  29. bool
  30. config i686
  31. bool
  32. config mips
  33. select BIG_ENDIAN
  34. bool
  35. config mipsel
  36. bool
  37. config arm
  38. bool
  39. config armeb
  40. select BIG_ENDIAN
  41. bool
  42. config avr32
  43. select BIG_ENDIAN
  44. bool
  45. config cris
  46. bool
  47. config m68k
  48. bool
  49. config powerpc
  50. select BIG_ENDIAN
  51. bool
  52. config sh3
  53. bool
  54. config sh3eb
  55. select BIG_ENDIAN
  56. bool
  57. config sh4
  58. bool
  59. config sh4eb
  60. select BIG_ENDIAN
  61. bool
  62. config sparc
  63. select BIG_ENDIAN
  64. bool
  65. config x86_64
  66. bool
  67. config ARCH
  68. string
  69. default "arm" if arm
  70. default "armeb" if armeb
  71. default "avr32" if avr32
  72. default "cris" if cris
  73. default "i386" if i386
  74. default "i686" if i686
  75. default "m68k" if m68k
  76. default "mips" if mips
  77. default "mipsel" if mipsel
  78. default "powerpc" if powerpc
  79. default "sh3" if sh3
  80. default "sh3eb" if sh3eb
  81. default "sh4" if sh4
  82. default "sh4eb" if sh4eb
  83. default "sparc" if sparc
  84. default "x86_64" if x86_64