Config.in 2.5 KB

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