Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #
  2. # Amateur Radio protocols and AX.25 device configuration
  3. #
  4. # 19971130 Now in an own category to make correct compilation of the
  5. # AX.25 stuff easier...
  6. # Joerg Reuter DL1BKE <jreuter@yaina.de>
  7. # 19980129 Moved to net/ax25/Config.in, sourcing device drivers.
  8. menuconfig HAMRADIO
  9. depends on NET
  10. bool "Amateur Radio support"
  11. help
  12. If you want to connect your Linux box to an amateur radio, answer Y
  13. here. You want to read <http://www.tapr.org/tapr/html/pkthome.html> and
  14. the AX25-HOWTO, available from <http://www.tldp.org/docs.html#howto>.
  15. Note that the answer to this question won't directly affect the
  16. kernel: saying N will just cause the configurator to skip all
  17. the questions about amateur radio.
  18. comment "Packet Radio protocols"
  19. depends on HAMRADIO && NET
  20. config AX25
  21. tristate "Amateur Radio AX.25 Level 2 protocol"
  22. depends on HAMRADIO && NET
  23. ---help---
  24. This is the protocol used for computer communication over amateur
  25. radio. It is either used by itself for point-to-point links, or to
  26. carry other protocols such as tcp/ip. To use it, you need a device
  27. that connects your Linux box to your amateur radio. You can either
  28. use a low speed TNC (a Terminal Node Controller acts as a kind of
  29. modem connecting your computer's serial port to your radio's
  30. microphone input and speaker output) supporting the KISS protocol or
  31. one of the various SCC cards that are supported by the generic Z8530
  32. or the DMA SCC driver. Another option are the Baycom modem serial
  33. and parallel port hacks or the sound card modem (supported by their
  34. own drivers). If you say Y here, you also have to say Y to one of
  35. those drivers.
  36. Information about where to get supporting software for Linux amateur
  37. radio as well as information about how to configure an AX.25 port is
  38. contained in the AX25-HOWTO, available from
  39. <http://www.tldp.org/docs.html#howto>. You might also want to
  40. check out the file <file:Documentation/networking/ax25.txt> in the
  41. kernel source. More information about digital amateur radio in
  42. general is on the WWW at
  43. <http://www.tapr.org/tapr/html/pkthome.html>.
  44. To compile this driver as a module, choose M here: the
  45. module will be called ax25.
  46. config AX25_DAMA_SLAVE
  47. bool "AX.25 DAMA Slave support"
  48. depends on AX25
  49. help
  50. DAMA is a mechanism to prevent collisions when doing AX.25
  51. networking. A DAMA server (called "master") accepts incoming traffic
  52. from clients (called "slaves") and redistributes it to other slaves.
  53. If you say Y here, your Linux box will act as a DAMA slave; this is
  54. transparent in that you don't have to do any special DAMA
  55. configuration. (Linux cannot yet act as a DAMA server.) If unsure,
  56. say N.
  57. # bool ' AX.25 DAMA Master support' CONFIG_AX25_DAMA_MASTER
  58. config NETROM
  59. tristate "Amateur Radio NET/ROM protocol"
  60. depends on AX25
  61. ---help---
  62. NET/ROM is a network layer protocol on top of AX.25 useful for
  63. routing.
  64. A comprehensive listing of all the software for Linux amateur radio
  65. users as well as information about how to configure an AX.25 port is
  66. contained in the AX25-HOWTO, available from
  67. <http://www.tldp.org/docs.html#howto>. You also might want to
  68. check out the file <file:Documentation/networking/ax25.txt>. More
  69. information about digital amateur radio in general is on the WWW at
  70. <http://www.tapr.org/tapr/html/pkthome.html>.
  71. To compile this driver as a module, choose M here: the
  72. module will be called netrom.
  73. config ROSE
  74. tristate "Amateur Radio X.25 PLP (Rose)"
  75. depends on AX25
  76. ---help---
  77. The Packet Layer Protocol (PLP) is a way to route packets over X.25
  78. connections in general and amateur radio AX.25 connections in
  79. particular, essentially an alternative to NET/ROM.
  80. A comprehensive listing of all the software for Linux amateur radio
  81. users as well as information about how to configure an AX.25 port is
  82. contained in the AX25-HOWTO, available from
  83. <http://www.tldp.org/docs.html#howto>. You also might want to
  84. check out the file <file:Documentation/networking/ax25.txt>. More
  85. information about digital amateur radio in general is on the WWW at
  86. <http://www.tapr.org/tapr/html/pkthome.html>.
  87. To compile this driver as a module, choose M here: the
  88. module will be called rose.
  89. menu "AX.25 network device drivers"
  90. depends on HAMRADIO && NET && AX25!=n
  91. source "drivers/net/hamradio/Kconfig"
  92. endmenu