Config.in 1.1 KB

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