Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Appletalk driver configuration
  4. #
  5. config ATALK
  6. tristate "Appletalk protocol support"
  7. select LLC
  8. help
  9. AppleTalk is the protocol that Apple computers can use to communicate
  10. on a network. If your Linux box is connected to such a network and you
  11. wish to connect to it, say Y. You will need to use the netatalk package
  12. so that your Linux box can act as a print and file server for Macs as
  13. well as access AppleTalk printers. Check out
  14. <http://www.zettabyte.net/netatalk/> on the WWW for details.
  15. EtherTalk is the name used for AppleTalk over Ethernet and the
  16. cheaper and slower LocalTalk is AppleTalk over a proprietary Apple
  17. network using serial links. EtherTalk and LocalTalk are fully
  18. supported by Linux.
  19. General information about how to connect Linux, Windows machines and
  20. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>. The
  21. NET3-4-HOWTO, available from
  22. <http://www.tldp.org/docs.html#howto>, contains valuable
  23. information as well.
  24. To compile this driver as a module, choose M here: the module will be
  25. called appletalk. You almost certainly want to compile it as a
  26. module so you can restart your AppleTalk stack without rebooting
  27. your machine. I hear that the GNU boycott of Apple is over, so
  28. even politically correct people are allowed to say Y here.
  29. config DEV_APPLETALK
  30. tristate "Appletalk interfaces support"
  31. depends on ATALK
  32. help
  33. AppleTalk is the protocol that Apple computers can use to communicate
  34. on a network. If your Linux box is connected to such a network, and wish
  35. to do IP over it, or you have a LocalTalk card and wish to use it to
  36. connect to the AppleTalk network, say Y.
  37. config LTPC
  38. tristate "Apple/Farallon LocalTalk PC support"
  39. depends on DEV_APPLETALK && (ISA || EISA) && ISA_DMA_API && VIRT_TO_BUS
  40. help
  41. This allows you to use the AppleTalk PC card to connect to LocalTalk
  42. networks. The card is also known as the Farallon PhoneNet PC card.
  43. If you are in doubt, this card is the one with the 65C02 chip on it.
  44. You also need version 1.3.3 or later of the netatalk package.
  45. This driver is experimental, which means that it may not work.
  46. See the file <file:Documentation/networking/device_drivers/appletalk/ltpc.rst>.
  47. config COPS
  48. tristate "COPS LocalTalk PC support"
  49. depends on DEV_APPLETALK && (ISA || EISA)
  50. help
  51. This allows you to use COPS AppleTalk cards to connect to LocalTalk
  52. networks. You also need version 1.3.3 or later of the netatalk
  53. package. This driver is experimental, which means that it may not
  54. work. This driver will only work if you choose "AppleTalk DDP"
  55. networking support, above.
  56. Please read the file
  57. <file:Documentation/networking/device_drivers/appletalk/cops.rst>.
  58. config COPS_DAYNA
  59. bool "Dayna firmware support"
  60. depends on COPS
  61. help
  62. Support COPS compatible cards with Dayna style firmware (Dayna
  63. DL2000/ Daynatalk/PC (half length), COPS LT-95, Farallon PhoneNET PC
  64. III, Farallon PhoneNET PC II).
  65. config COPS_TANGENT
  66. bool "Tangent firmware support"
  67. depends on COPS
  68. help
  69. Support COPS compatible cards with Tangent style firmware (Tangent
  70. ATB_II, Novell NL-1000, Daystar Digital LT-200.
  71. config IPDDP
  72. tristate "Appletalk-IP driver support"
  73. depends on DEV_APPLETALK && ATALK
  74. help
  75. This allows IP networking for users who only have AppleTalk
  76. networking available. This feature is experimental. With this
  77. driver, you can encapsulate IP inside AppleTalk (e.g. if your Linux
  78. box is stuck on an AppleTalk only network) or decapsulate (e.g. if
  79. you want your Linux box to act as an Internet gateway for a zoo of
  80. AppleTalk connected Macs). Please see the file
  81. <file:Documentation/networking/ipddp.rst> for more information.
  82. If you say Y here, the AppleTalk-IP support will be compiled into
  83. the kernel. In this case, you can either use encapsulation or
  84. decapsulation, but not both. With the following two questions, you
  85. decide which one you want.
  86. To compile the AppleTalk-IP support as a module, choose M here: the
  87. module will be called ipddp.
  88. In this case, you will be able to use both encapsulation and
  89. decapsulation simultaneously, by loading two copies of the module
  90. and specifying different values for the module option ipddp_mode.
  91. config IPDDP_ENCAP
  92. bool "IP to Appletalk-IP Encapsulation support"
  93. depends on IPDDP
  94. help
  95. If you say Y here, the AppleTalk-IP code will be able to encapsulate
  96. IP packets inside AppleTalk frames; this is useful if your Linux box
  97. is stuck on an AppleTalk network (which hopefully contains a
  98. decapsulator somewhere). Please see
  99. <file:Documentation/networking/ipddp.rst> for more information.