Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 cris
  41. bool
  42. config m68k
  43. bool
  44. config powerpc
  45. select BIG_ENDIAN
  46. bool
  47. config sh3
  48. bool
  49. config sh3eb
  50. select BIG_ENDIAN
  51. bool
  52. config sh4
  53. bool
  54. config sh4eb
  55. select BIG_ENDIAN
  56. bool
  57. config sparc
  58. select BIG_ENDIAN
  59. bool
  60. config x86_64
  61. bool
  62. config ARCH
  63. string
  64. default "arm" if arm
  65. default "armeb" if armeb
  66. default "cris" if cris
  67. default "i386" if i386
  68. default "m68k" if m68k
  69. default "mips" if mips
  70. default "mipsel" if mipsel
  71. default "powerpc" if powerpc
  72. default "sh3" if sh3
  73. default "sh3eb" if sh3eb
  74. default "sh4" if sh4
  75. default "sh4eb" if sh4eb
  76. default "sparc" if sparc
  77. default "x86_64" if x86_64