Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 ATM_SUPPORT
  14. bool
  15. config VIDEO_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 PROFILE_KCONFIG
  26. bool
  27. # Architecture selection
  28. config i386
  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 "m68k" if m68k
  73. default "mips" if mips
  74. default "mipsel" if mipsel
  75. default "powerpc" if powerpc
  76. default "sh3" if sh3
  77. default "sh3eb" if sh3eb
  78. default "sh4" if sh4
  79. default "sh4eb" if sh4eb
  80. default "sparc" if sparc
  81. default "x86_64" if x86_64