Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. config BR2_PACKAGE_BIRD
  2. bool "bird"
  3. depends on !BR2_nios2 # relocations don't fit
  4. depends on BR2_USE_MMU # fork()
  5. help
  6. BIRD Internet Routing Daemon
  7. The BIRD project aims to develop a dynamic IP routing daemon
  8. with full support of all modern routing protocols, easy to
  9. use configuration interface and powerful route filtering
  10. language
  11. http://bird.network.cz/
  12. if BR2_PACKAGE_BIRD
  13. config BR2_PACKAGE_BIRD_CLIENT
  14. bool "birdc"
  15. select BR2_PACKAGE_NCURSES
  16. select BR2_PACKAGE_READLINE
  17. help
  18. Enable the BIRD client
  19. comment "protocol support"
  20. config BR2_PACKAGE_BIRD_BABEL
  21. bool "babel"
  22. help
  23. Enable Babel protocol.
  24. config BR2_PACKAGE_BIRD_BFD
  25. bool "bfd"
  26. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  27. help
  28. Enable BFD protocol.
  29. comment "BFD protocol needs a toolchain w/ NPTL"
  30. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
  31. config BR2_PACKAGE_BIRD_BGP
  32. bool "bgp"
  33. default y
  34. help
  35. Enable BGP protocol.
  36. config BR2_PACKAGE_BIRD_MRT
  37. bool "mrt"
  38. help
  39. Enable MRT protocol.
  40. config BR2_PACKAGE_BIRD_OSPF
  41. bool "ospf"
  42. help
  43. Enable OSPFv2 and OSPFv3 protocol.
  44. config BR2_PACKAGE_BIRD_PERF
  45. bool "perf"
  46. help
  47. Enable Perf protocol.
  48. config BR2_PACKAGE_BIRD_PIPE
  49. bool "pipe"
  50. help
  51. Enable Pipe protocol.
  52. config BR2_PACKAGE_BIRD_RADV
  53. bool "radv"
  54. help
  55. Enable RAdv protocol.
  56. config BR2_PACKAGE_BIRD_RIP
  57. bool "rip"
  58. help
  59. Enable RIP protocol.
  60. config BR2_PACKAGE_BIRD_STATIC
  61. bool "static"
  62. help
  63. Enable Static protocol.
  64. endif