Config.in 1.2 KB

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