This adds a separate package for the 2.0 branch of Bird, allowing it to
co-exist with the bird1 package. The two packages conflict with each other,
so they can't be installed at the same time; but in the build system they
coexist just fine.
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
This renames the bird and bird-openwrt packages to bird1, to make it
possible for bird2 (added in a subsequent commit) to coexist with it.
The packages are renamed to bird1-ipv{4,6} to avoid the confusion of
having packages named 'bird2', 'bird4' and 'bird6'.
Also bump to v1.6.4 as that contains important bug fixes.
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
NodogSplash iptables entries are overwritten if the OpenWrt Firewall is restarted.
This change adds a restart hook to firewall.user to restart NoDogSplash if firewall is restarted.
Author-name: Rob White
Signed-off-by: Rob White rob@blue-wave.net
As no maintainer take the opportunity to drop from this repo and put in
main openwrt/packages repo.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
I haven't used the package personally for last 3 years, so
de-maintainering myself as testing version updates is extra work I do
not need for stuff I do not use.
* Fix memory leaks 300522 and 300520 due to changed interface status and increased nlmsg size
* Fix physical channel detection: https://github.com/bmx-routing/bmx7/issues/19
* Enable DEBUG_MALLOC and CORE_LIMIT=20000 by default
* support latest kernels (3.2 - 4.17)
* coding style cleanups and refactoring
* add DAT cache and multicast flags netlink support
* avoid redundant multicast TT entries
* bugs squashed:
- update data pointers after skb_cow()
- fix header size check in batadv_dbg_arp()
- fix skbuff rcsum on packet reroute
- fix multicast-via-unicast transmission with AP isolation
- fix packet loss for broadcasted DHCP packets to a server
- fix multicast packet loss with a single WANT_ALL_IPV4/6 flag
Signed-off-by: Sven Eckelmann <sven@narfation.org>
* synchronization of batman-adv netlink and packet headers
* add DAT cache and multicast flags netlink support
* disable translation support for non-unicast mac addresses
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Sysupgrade currently leads to a loss of the content of /etc/bmx7 which
contains the secret keys. After the reboot the device creates new IPs
leading to a new "identity" aka ID, shortID and IPv6 changes.
Occationally /proc/net/if_inet6 contains interface IDs with
three digits. In this case, the regex in wait_for_ll_address()
does not work anymore and alfred is not starting.
This patch changes the evaluation so that fields are used instead
of the mere position by counting characters.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Using procd allows better control and monitoring of the bmx7 process.
Keep polling for mac80211.sh process for now until we find a better
way to make sure that wireless configuration has been generated before
starting bmx7.
Setting maximum core size to 20000 looks dangerous on small devices,
but keep it as it was before, we shall discuss this separately.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
nodogsplash2: Add compatibility with mwan3 version 2
Changes in mwan3 version 2 resulted in previous recommended fix for Nodogsplash to fail.
Setting fw_mark to use bits set "higher" than used in mwan3 solves the problem. This works also for all previous versions of Nodogsplash.
Author-name: Rob White
Signed-off-by: Rob White <rob@blue-wave.net>
* Sort links by name
* Allow configuring invalid --pathLq1Threshold (due to configReload problem) and fix it in description
* Introduce --linkThroughputEfficiency=0 (70) and cleanup metric algos
* Update expectedThroughput only if estimation exists
* Calculate and use average expected throughput instead of fluctuating current value
* Rename wireless expected throughput variables
* Align ordering of link_status struct and field_format
* Fix: Interpret expected TP as Kbps
* Fix txRateExpected typos
* Add expected throughput as reported by minstrel(_ht)
* synchronization of batman-adv netlink and packet headers
* mark licenses clearer, change batman-adv UAPI header from ISC to MIT
* coding style cleanups and refactoring
Signed-off-by: Sven Eckelmann <sven@narfation.org>
* synchronization of batman-adv netlink and packet headers
* mark licenses clearer, change batman-adv UAPI header from ISC to MIT
* coding style cleanups and refactoring
Signed-off-by: Sven Eckelmann <sven@narfation.org>
* support latest kernels (3.2 - 4.16)
* coding style cleanups and refactoring
* mark licenses clearer, change UAPI header from ISC to MIT
* bugs squashed:
- fix packet checksum handling in receive path
- fix handling of large number of interfaces
- fix netlink dumping of gateways and BLA claims+backbones
Signed-off-by: Sven Eckelmann <sven@narfation.org>
* crypt: Fix broken MBEDTLS_THREADING_C support due to missing rsa_init()
* Common.mk: remove unneeded linker dependency -lmbedtls
* bmx ip link prof: fix several potential sprintf() buffer overwrites
* bmx desc json node: muting sys-level debug messages
* Fix json-descriptions files
* json: dump json originators file with relevance 2, do not remove descriptions due to deleted routes
* json: change default json files update interval to a minute
* bmx: fixing origs/keys_status_creator() with given key_node data
* json: fixing /var/run/originators/... and cleanup
* json: set json jshow default relevance to 1 (medium)
* Cleanup and simplify status memory usage report
* tun: --tunOutDelay=100 delay catched and rescheduled tunnel packets for us to complete proper dedicated tunnel setup
* mute warning for unknown description-frame types
* introduce --tunCatchDelay=100 to delay catched and rescheduled tunnel packets for us to complete proper dedicated tunnel setup
* Revert "hna: Use real or zero remote tunnel addresses"
Which does not work with current openwrt/lede kernels
due to their patched ip6_tunnel.c code for supporting MAP-E-FMRs.
* Fix linker problem when compiling topology plugin with -DPROFILING
The PKG_BUILD_DEPENDS variable must refer to source packages instead of
binary package names.
Fixes the following errors on current OpenWrt master:
Upon scripts/feeds install:
WARNING: No feed for source package 'libncurses' found
WARNING: No feed for source package 'libreadline' found
Upon metadata scanning and dependency resolution:
WARNING: Makefile 'package/feeds/routing/bird/Makefile' has a build dependency on 'libncurses', which does not exist
WARNING: Makefile 'package/feeds/routing/bird/Makefile' has a build dependency on 'libreadline', which does not exist
Signed-off-by: Jo-Philipp Wich <jo@mein.io>