Config.in 1.1 KB

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