[packages] babeld: new upstream release 1.3.1

11 February 2011: babeld-1.3.1
  * Made the resend logic less aggressive.  This should lead to fewer request
    messages upon link failure, at the cost of somewhat worse behaviour in the
    presence of heavy packet loss.
  * INCOMPATIBLE CHANGE: removed the idle detection functionality (-i).  This
    feature was little used and complicated the code somewhat.
  * Various internal tweaks to bring babeld closer to the Quagga version.

git-svn-id: svn://svn.openwrt.org/openwrt/packages@30451 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
kerneis 2012-02-11 15:17:16 +00:00
parent 12e499f998
commit dcb18904da
3 changed files with 2 additions and 6 deletions

View File

@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=babeld
PKG_VERSION:=1.3.0
PKG_VERSION:=1.3.1
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.pps.jussieu.fr/~jch/software/files/
PKG_MD5SUM:=05fc458d159b9b6fbf9c2f2f20eb8291
PKG_MD5SUM:=bc1cb1924c61b4dad6410e342827e8c5
include $(INCLUDE_DIR)/package.mk

View File

@ -6,9 +6,6 @@ config general
# option 'state_file' '/var/lib/babel-state'
# option 'hello_interval' '4'
# option 'wired_hello_interval' '20'
# Enable detection of idle networks. This functonality is
# experimental, don't use it unless you know what you are doing.
## option 'idle_hello_interval' '0'
# option 'diversity' '0,128'
# option 'kernel_priority' '0'
# Do not use this option unless you know what you are doing, as it can

View File

@ -104,7 +104,6 @@ babel_config() {
append_parm "$cfg" 'state_file' '-S'
append_parm "$cfg" 'hello_interval' '-h'
append_parm "$cfg" 'wired_hello_interval' '-H'
append_parm "$cfg" 'idle_hello_interval' '-i'
append_parm "$cfg" 'diversity' '-z'
append_parm "$cfg" 'kernel_priority' '-k'
append_parm "$cfg" 'duplication_priority' '-A'