Config.in 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. config BR2_PACKAGE_QUAGGA
  2. bool
  3. comment "quagga suite"
  4. config BR2_PACKAGE_QUAGGA_ZEBRA
  5. bool "quagga zebra"
  6. select BR2_PACKAGE_QUAGGA
  7. help
  8. routing software suite, providing implementations of
  9. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  10. http://www.quagga.net/
  11. config BR2_PACKAGE_QUAGGA_BGPD
  12. bool "quagga bgpd"
  13. select BR2_PACKAGE_QUAGGA
  14. help
  15. routing software suite, providing implementations of
  16. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  17. http://www.quagga.net/
  18. config BR2_PACKAGE_QUAGGA_RIPD
  19. bool "quagga ripd"
  20. select BR2_PACKAGE_QUAGGA
  21. help
  22. routing software suite, providing implementations of
  23. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  24. http://www.quagga.net/
  25. config BR2_PACKAGE_QUAGGA_RIPNGD
  26. bool "quagga ripngd"
  27. select BR2_PACKAGE_QUAGGA
  28. help
  29. routing software suite, providing implementations of
  30. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  31. http://www.quagga.net/
  32. config BR2_PACKAGE_QUAGGA_OSPFD
  33. bool "quagga ospfd"
  34. select BR2_PACKAGE_QUAGGA
  35. help
  36. routing software suite, providing implementations of
  37. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  38. http://www.quagga.net/
  39. config BR2_PACKAGE_QUAGGA_OSPF6D
  40. bool "quagga ospf6d"
  41. select BR2_PACKAGE_QUAGGA
  42. depends on BR2_INET_IPV6
  43. help
  44. routing software suite, providing implementations of
  45. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  46. http://www.quagga.net/
  47. config BR2_PACKAGE_QUAGGA_WATCHQUAGGA
  48. bool "quagga watchquagga"
  49. select BR2_PACKAGE_QUAGGA
  50. help
  51. routing software suite, providing implementations of
  52. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  53. http://www.quagga.net/
  54. config BR2_PACKAGE_QUAGGA_ISISD
  55. bool "isisd"
  56. select BR2_PACKAGE_QUAGGA
  57. help
  58. routing software suite, providing implementations of
  59. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  60. http://www.quagga.net/
  61. if BR2_PACKAGE_QUAGGA
  62. comment "common options for quagga suite"
  63. config BR2_PACKAGE_QUAGGA_BGP_ANNOUNCE
  64. bool "BGP route announcement"
  65. config BR2_PACKAGE_QUAGGA_NETLINK
  66. bool "quagga: use linux netlink interface"
  67. default y
  68. config BR2_PACKAGE_QUAGGA_SNMP
  69. bool "quagga: SNMP support"
  70. config BR2_PACKAGE_QUAGGA_TCP_ZEBRA
  71. bool "quagga: TCP/IP socket connection between zebra and proto daemon"
  72. config BR2_PACKAGE_QUAGGA_OPAGUE_LSA
  73. bool "quagga: OSPF Opaque-LSA with OSPFAPI support (RFC2370)"
  74. config BR2_PACKAGE_QUAGGA_CONFIGURE
  75. string "quagga: extra configure options"
  76. default ""
  77. endif