diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 15:55:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 15:55:00 +0000 |
commit | 1548b21ce2fdc384b3e0e86676529d3d8b422f9b (patch) | |
tree | c5847844639ace85fa9af7307c2e46095f07c361 /package/quagga/Config.in | |
parent | 79e2d802ae7e376a413c02097790493e1f65c3a4 (diff) | |
download | buildroot-novena-1548b21ce2fdc384b3e0e86676529d3d8b422f9b.tar.gz buildroot-novena-1548b21ce2fdc384b3e0e86676529d3d8b422f9b.zip |
- add quagga suite
Diffstat (limited to 'package/quagga/Config.in')
-rw-r--r-- | package/quagga/Config.in | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/package/quagga/Config.in b/package/quagga/Config.in new file mode 100644 index 000000000..880147aa4 --- /dev/null +++ b/package/quagga/Config.in @@ -0,0 +1,113 @@ +config BR2_PACKAGE_QUAGGA + bool + default n + +comment "quagga suite" + +config BR2_PACKAGE_QUAGGA_ZEBRA + bool "quagga zebra" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_BGPD + bool "quagga bgpd" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_RIPD + bool "quagga ripd" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_RIPNGD + bool "quagga ripngd" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_OSPFD + bool "quagga ospfd" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_OSPF6D + bool "quagga ospf6d" + default n + select BR2_PACKAGE_QUAGGA + depends BR2_INET_IPV6 + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_WATCHQUAGGA + bool "quagga watchquagga" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +config BR2_PACKAGE_QUAGGA_ISISD + bool "isisd" + default n + select BR2_PACKAGE_QUAGGA + help + routing software suite, providing implementations of + OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4. + + http://www.quagga.net/ + +if BR2_PACKAGE_QUAGGA +comment "common options for quagga suite" +config BR2_PACKAGE_QUAGGA_BGP_ANNOUNCE + bool "BGP route announcement" + default n + +config BR2_PACKAGE_QUAGGA_NETLINK + bool "quagga: use linux netlink interface" + default y + +config BR2_PACKAGE_QUAGGA_SNMP + bool "quagga: SNMP support" + default n + +config BR2_PACKAGE_QUAGGA_TCP_ZEBRA + bool "quagga: TCP/IP socket connection between zebra and proto daemon" + default n + +config BR2_PACKAGE_QUAGGA_OPAGUE_LSA + bool "quagga: OSPF Opaque-LSA with OSPFAPI support (RFC2370)" + default n + +config BR2_PACKAGE_QUAGGA_CONFIGURE + string "quagga: extra configure options" + default "" +endif |