aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
...
* | | | | openvswitch: use https download urlYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At the time of this writing, Open vSwitch official website suggests http://openvswitch.org whose https couterpart uses a self-signed certificate, but it redirects to http://www.openvswitch.org, which has a working https equivalent. Reported-by: Rosen Penev <rosenp@gmail.com> Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: set Yousong Zhou as the maintainerYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: add gre, vxlan, geneve tunneling supportYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: bump PKG_RELEASEYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: rework openvswitch kernel datapath packageYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - KCONFIG: bridge compatibility was removed since Open vSwitch 1.10. See Open vSwitch FAQ.md for details - The module does not depend on kmod-gre, kmod-vxlan - Use AutoProbe to remove dependecy on specific priority Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: python: rework host and target dependencyYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Open vSwitch needs to run python on build machine to make build-time required files. python-six library is only required by the openvswitch python library on target machine, not a build dependency. We override host PYTHONPATH by overriding it in MAKE_VARS. This way we can remove 0003-override-pythonpath-via-make-vars.patch This also fixes shebang wrongly pointing to python on host Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: python: remove openvswitch as a dependencyYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The python library is a standalone unit. Remove dependency on PACKAGE_openvswitch to allow users to use it with maybe remote openvswitch services. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: remove --disable-sslYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove it since we already select libopenssl in openvswitch-base Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: use default rundir /var/run/openvswitch/Yousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This subdir contains multiple pid, unix domain socket files. It's a custom to put them in it's own subdir Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | openvswitch: remove dependency on SUPPORTED_KERNELSYousong Zhou2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Quote from Open vSwitch FAQ.md Open vSwitch userspace should also work with the Linux kernel module built into Linux 3.3 and later. Open vSwitch userspace is not sensitive to the Linux kernel version. It should build against almost any kernel, certainly against 2.6.32 and later. The SUPPORTED_KERNEL dependency for openvswitch kernel module only makes sense when we are building it from the ovs release tarballs against mainline kernels. Now that we are using the module from vanilla kernel itself, the dependency does not exist anymore Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | ntpd: update to 4.2.8p11Peter Wagner2018-03-05
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | Merge pull request #5710 from gladiac1337/feature-haproxy-1.8Thomas Heil2018-03-04
|\ \ \ \ \ | | | | | | | | | | | | haproxy: Update HAProxy to v1.8.4 (+patches)
| * | | | | haproxy: Fix non-ssl buildsChristian Lachner2018-03-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add missing libatomic dependency in non-ssl variant of the build Signed-off-by: Christian Lachner <gladiac@gmail.com>
| * | | | | haproxy: Update HAProxy to v1.8.4 (+patches)Christian Lachner2018-03-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Update haproxy download URL and hash - Update the haproxy homepage - Add libatomic to the dependencies as 1.8 needs it - Make USE_REGPARM an x86-only option as this fixes many warnings and does not do much on non-x86 platforms - Add USE_GETADDRINFO=1 to use getaddrinfo() to resolve IPv6 host names - Add USE_TFO=1 to enable TCP fast open - Unbreak CFLAGS, LD and LDFLAGS by adding the missing backslash after $(ADDON) - Unbreak IGNOREGIT=1 option (typo) - Rework LDFLAGS and add libatomic - Add MEDIUM+ patches (see https://www.haproxy.org/bugs/bugs-1.8.4.html) Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | | | | Merge pull request #5708 from gladiac1337/masterThomas Heil2018-03-04
|\| | | | | | | | | | | | | | | | | haproxy: Fix Lua-support on non-mips(el) targets.
| * | | | | haproxy: Change download-URLs to https-variantsChristian Lachner2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - change haproxy download-URL to https-variant - change lua download-URL to https-variant Signed-off-by: Christian Lachner <gladiac@gmail.com>
| * | | | | haproxy: Fix Lua-support on non-mips(el) targets.Christian Lachner2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - the Lua-support logic was cleaned up to unbreak Lua-support on non-mips(el) targets. Previously, no target had Lua-support. - mips and mipsel are both known to currently not build with Lua-support enabled => disable both. - mips64 and mips64el were tested fine with Lua-support enabled. Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | | | | Merge pull request #5704 from wvdakker/masterHannu Nyman2018-03-04
|\ \ \ \ \ \ | | | | | | | | | | | | | | Shorewall: Bump to version 5.1.12.3
| * | | | | | Shorewall6: Bump to version 5.1.12.3W. van den Akker2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | | | Shorewall: Bump to version 5.1.12.3W. van den Akker2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | | | Shorewall6-lite: Bump to version 5.1.12.3W. van den Akker2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | | | Shorewall-lite: Bump to version 5.1.12.3W. van den Akker2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | | | Shorewall-core: Bump to version 5.1.12.3W. van den Akker2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
* | | | | | | Merge pull request #5699 from br101/pingcheckHannu Nyman2018-03-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | pingcheck: Update to latest version
| * | | | | | | pingcheck: Update to latest versionBruno Randolf2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Bruno Randolf <br1@einfach.org>
* | | | | | | | tor: update to 0.3.2.10Peter Wagner2018-03-03
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | | ocserv: updated to 0.11.11Nikos Mavrogiannopoulos2018-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | Merge pull request #5678 from neheb/wifidogDirk Brenken2018-03-03
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | wifidog: Change URL to HTTPS and switch file to .xz
| * | | | | | wifidog: Change URL to HTTPS and switch file to .xzRosen Penev2018-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HTTPS tends to go through firewalls and xz is smaller. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | Merge pull request #5700 from dibdot/travelmateDirk Brenken2018-03-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | travelmate: update 1.1.3
| * | | | | | | travelmate: update 1.1.3Dirk Brenken2018-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix remaining status oddities * LuCI: show WiFi QR codes from all configured Access Points Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | | Merge pull request #5698 from TDT-AG/bwm-ng_gcc7x_fixDirk Brenken2018-03-02
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | bwm-ng: add patch to fix GCC 7.x compatibility
| * | | | | | | | bwm-ng: add patch to fix GCC 7.x compatibilityMartin Schiller2018-03-02
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Martin Schiller <ms@dev.tdt.de>
* / | | | | | | transmission: Fix HTTPS and mobile devices.Rosen Penev2018-03-01
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HTTPS verification is totally broken in Transmission. Unclear why. Disabling as a result. Safari exposes a JavaScript bug that makes it not load. Fixed. Portcheck was backported to HTTPS for testing initially. Seems like a good idea. Makefile was also fixed to use the external libnatpmp. Smaller binary. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | mosquitto: bump to 1.4.15 for CVE fixesKarl Palsson2018-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://mosquitto.org/blog/2018/02/security-advisory-cve-2017-7651-cve-2017-7652/ for full details. patch for reproducible builds had to be rebuilt based on upstream change. Signed-off-by: Karl Palsson <karlp@etactica.com>
* | | | | | | sqm-scripts: Fix return value bug in postrm scriptTony Ambardar2018-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The script removes the UCI option ucitrack.@sqm[0] if present and then returns success. If that UCI option is already absent however, the script incorrectly returns failure, which blocks upgrade of the luci-app-sqm package. Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
* | | | | | | Merge pull request #5664 from Ansuel/ariangDirk Brenken2018-02-28
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | ariang: add new package
| * | | | | | | ariang: add new packageAnsuel Smith2018-02-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modern webui for aria2 package Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* | | | | | | | Merge pull request #5684 from dibdot/travelmateDirk Brenken2018-02-27
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | travelmate: update 1.1.2
| * | | | | | | travelmate: update 1.1.2Dirk Brenken2018-02-27
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * validate input timings/ranges * fix an eap detection issue * refine re-connection handling in case of an error * refine debug logging Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | | | irssi: update to 1.1.1Peter Wagner2018-02-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes the following CVEs: CVE-2018-7050 https://nvd.nist.gov/vuln/detail/CVE-2018-7050 CVE-2018-7051 https://nvd.nist.gov/vuln/detail/CVE-2018-7051 CVE-2018-7052 https://nvd.nist.gov/vuln/detail/CVE-2018-7052 CVE-2018-7053 https://nvd.nist.gov/vuln/detail/CVE-2018-7053 CVE-2018-7054 https://nvd.nist.gov/vuln/detail/CVE-2018-7054 Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | | strongswan: bump to 5.6.2Stijn Tintel2018-02-27
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | | | Merge pull request #5654 from NeoRaider/update-joolHannu Nyman2018-02-25
|\ \ \ \ \ \ | | | | | | | | | | | | | | jool: update to latest git version
| * | | | | | jool: update to latest git versionMatthias Schiffer2018-02-22
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes build against kernel 4.14. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
* | | | | | Merge pull request #5659 from neheb/kadnodeHannu Nyman2018-02-25
|\ \ \ \ \ \ | | | | | | | | | | | | | | kadnode: Change URL to use git.
| * | | | | | kadnode: Change URL to use git.Rosen Penev2018-02-22
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently the Makefile creates a v---.tar.gz file which can conflict with other packages. Standardize the format. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #5674 from wvdakker/masterHannu Nyman2018-02-25
|\ \ \ \ \ \ | | | | | | | | | | | | | | Shorewall: Bump to version 5.1.12.2
| * | | | | | Shorewall6: Bump to version 5.1.12.2W. van den Akker2018-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | | | Shorewall: Bump to version 5.1.12.2W. van den Akker2018-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
| * | | | | | Shorewall6-lite: Bump to version 5.1.12.2W. van den Akker2018-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>