aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
...
* | | bmon: Fix libncursesw dependencyBaptiste Jonglez2014-11-10
| | | | | | | | | | | | | | | | | | | | | When libncursesw is available, bmon uses it instead of libncurses. This commit adapts the dependencies accordingly. Signed-off-by: Baptiste Jonglez <bjonglez@illyse.org>
* | | ddns-scripts: Update to Version 2.1.0-1 see descriptionChristian Schoenebeck2014-11-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fixed postinst and prerm in Makefile - implementation of provider specific update scripts into services and services_ipv6 file. first Provider "no-ip.com" - Thanks to DarkStarXxX for request and testing - finished uci/ddns wiki at http://wiki.openwrt.org/doc/uci/ddns - rewritten retry management - rewritten logging including following Issue 469 https://github.com/openwrt/packages/issues/469 - stop running sections on hotplug ifdown event (like start on ifup) - implement trap detection also kill "sleep" child processes SIGHUP to reload configuration (not really reloading, simply starting a new process) /etc/init.d/ddns reload implemented - code optimization - new provider LoopiaDNS.se Issue 494 https://github.com/openwrt/packages/issues/494 Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
* | | sqm-scripts: Modify installation step to ensure correct file permissionsHannu Nyman2014-11-09
| | | | | | | | | | | | | | | | | | | | | Use INSTALL_BIN & INSTALL_DATA macros instead of cp to ensure correct file permissions for the executable files. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | haproxy: bump to version 1.5.8Thomas Heil2014-11-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Released version 1.5.8 with the following main changes : - BUG/MAJOR: buffer: check the space left is enough or not when input data in a buffer is wrapped - BUG/BUILD: revert accidental change in the makefile from latest SSL fix Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
* | | Change default bcp38 interface to be eth1, don't enable by default.Toke Høiland-Jørgensen2014-11-05
| | |
* | | Add luci-app-bcp38 packageToke Høiland-Jørgensen2014-11-05
| | | | | | | | | | | | Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
* | | Make PKG_LICENSE for BCP38 SPDX compatible.Toke Høiland-Jørgensen2014-11-05
| | |
* | | Add BCP38 implementation package (from CeroWrt).Toke Høiland-Jørgensen2014-11-05
| | | | | | | | | | | | Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
* | | mdnsresponder: add spdx tagSteven Barth2014-11-03
| | | | | | | | | | | | Signed-off-by: Steven Barth <steven@midlink.org>
* | | sqm-scripts: use masks with markingsHannu Nyman2014-11-02
| | | | | | | | | | | | | | | | | | Apply mask for markings to enable co-existence with multiwan, mwan3 etc. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | Merge pull request #488 from commodo/ovs-fix-kernel-3.12champtar2014-10-31
|\ \ \ | | | | | | | | openvswitch: add +kmod-vxlan dependency for kernels >= 3.12
| * | | openvswitch: add +kmod-vxlan dependency for kernels >= 3.12Alexandru Ardelean2014-10-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When OVS detects a kernel version >= 3.12 it does not build it's own vxlan module and tries to use the kernel's, when building the OVS kernel module. I also pushed a patch to the OpenWRT trunk to add a +kmod-vxlan package. This will add the kernel's vxlan.ko kernel module if it exists. So, for kernel >= 3.12, this package should exist and be installed when installing OVS. Tested on OpenWRT trunk with kernel 3.14.18. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | Merge pull request #481 from zorun/mastersbyx2014-10-31
|\ \ \ \ | |/ / / |/| | | Import bmon from oldpackages
| * | | bmon: Bump to 3.5 and add myself as maintainerBaptiste Jonglez2014-10-31
| | | | | | | | | | | | | | | | Signed-off-by: Baptiste Jonglez <bjonglez@illyse.org>
| * | | bmon: Import from oldpackagesBaptiste Jonglez2014-10-31
| | | | | | | | | | | | | | | | Signed-off-by: Baptiste Jonglez <bjonglez@illyse.org>
* | | | Merge pull request #486 from commodo/ovs-build-fix2champtar2014-10-30
|\ \ \ \ | | | | | | | | | | openvswitch: add patch "datapath: Backport __ip_select_ident() function"
| * | | | openvswitch: add patch "datapath: Backport __ip_select_ident() function"Alexandru Ardelean2014-10-30
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <aa@ocedo.com>
* | | | | Merge pull request #485 from commodo/ovs-build-fixchamptar2014-10-30
|\ \ \ \ \ | |/ / / / |/| | | | openvswitch: fix build for gcc versions below 4.9
| * | | | openvswitch: fix build for gcc versions below 4.9Alexandru Ardelean2014-10-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems that while fixing the build for GCC 4.9 I broke the build for GCC 4.8, because that KCFLAG I added causes a build error (since it's not recognized). The fix is to add KCFLAG only when GCC 4.9 is used. OpenVSwitch now builds successfully with GCC 4.8 and 4.9. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | Merge pull request #478 from sourceindex/added-new-kismet-packagesbyx2014-10-30
|\ \ \ \ \ | | | | | | | | | | | | kismet: new kismet wireless package
| * | | | | kismet: added missing PKG_LICENSE tagSebastian Wendel2014-10-30
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Sebastian Wendel<packages@sourceindex.de>
| * | | | | kismet: added new version of the kismet wireless network systemSebastian Wendel2014-10-30
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Sebastian Wendel <packages@sourceindex.de>
* | | | | | Merge pull request #483 from jow-/wget-1.16Jo-Philipp Wich2014-10-30
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | wget: update to v1.16
| * | | | | wget: update to v1.16Jo-Philipp Wich2014-10-29
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The update fixes CVE-2014-4877 which allows malicious FTP servers to modify local filesystem contents through specificially crafted symlinks. Please backport to for-14.07 too. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* / | | | luci-app-ocserv and luci-proto-openconnect were moved to openwrt/luci repoNikos Mavrogiannopoulos2014-10-29
|/ / / / | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | openconnect: use SIGINT to bring down openconnectNikos Mavrogiannopoulos2014-10-28
| | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | openconnect: forward SIGINT to appNikos Mavrogiannopoulos2014-10-28
| | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | openvswitch: add KCFLAGS="-Wno-error=date-time" to kernel modules buildAlexandru Ardelean2014-10-28
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | openvswitch: add patch for adding KCFLAGS var to the OVS buildAlexandru Ardelean2014-10-28
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | udpxy: rework init script and add disabled/respawn configs.Álvaro Fernández Rojas2014-10-27
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | Merge pull request #422 from rcmcronny/patch-1Jo-Philipp Wich2014-10-26
|\ \ \ \ | | | | | | | | | | Update snmpd.init - add support for disk config option
| * | | | Update snmpd.initrcmcronny2014-10-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add support for "disk <partition> <size>" option example for /etc/config/snmpd =========== config disk option partition '/' option size '500' ===========
* | | | | ocserv: updated to 0.8.7Nikos Mavrogiannopoulos2014-10-26
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | openconnect: force rebuild when config changesNicolas Thill2014-10-25
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nicolas Thill <nico@openwrt.org>
* | | | | ocserv: force rebuild when config changesNicolas Thill2014-10-25
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nicolas Thill <nico@openwrt.org>
* | | | | nut: force rebuild when config changesNicolas Thill2014-10-25
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nicolas Thill <nico@openwrt.org>
* | | | | lftp: disable libidn explicitelyNicolas Thill2014-10-24
| | | | | | | | | | | | | | | | | | | | This prevent detection of libidn when target arch = host arch.
* | | | | fastd: re-enable link-time optimizationMatthias Schiffer2014-10-21
| |_|/ / |/| | | | | | | | | | | | | | | | | | | The toolchain is fixed, so LTO can be enabled again. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
* | | | strongswan: update to 5.2.1Steven Barth2014-10-20
| | | | | | | | | | | | | | | | Signed-off-by: Steven Barth <steven@midlink.org>
* | | | Merge pull request #443 from ott/mastersbyx2014-10-19
|\ \ \ \ | | | | | | | | | | knot: Split utils subpackage
| * | | | knot: Split utils subpackageMatthias-Christian Ott2014-10-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | knot-utils consists of kdig, khost, knsec3hash and knsupdate. In order to reduce the size of software installed on a device it is useful to include a minimal collection of software and thus it should be possible to install the utilities individually. bind also creates a subpackage for each utility. Signed-off-by: Matthias-Christian Ott <ott@mirix.org>
* | | | | nut: Updated (c) noticeMarty R2014-10-19
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Martin Rowe <martin.p.rowe@gmail.com>
* | | | | openssh: update to 6.7p1Peter Wagner2014-10-19
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | irssi: update to 0.8.17Peter Wagner2014-10-18
|/ / / / | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | Merge pull request #442 from hnyman/patch-sqmToke Høiland-Jørgensen2014-10-18
|\ \ \ \ | | | | | | | | | | sqm-scripts: Fix a minor bug, add copyrights, improve logging
| * | | | sqm-scripts: Fix a minor bug, add copyrights, improve loggingHannu Nyman2014-10-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes committed to the cerowrt original repo after the initial import here: - Better license & copyright statements, as requested - Fixed a minor bug in stopping sqm - Logging improvements - Dead code removed - Typos corrected Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | nfs-kernel-server: update to 1.3.1Peter Wagner2014-10-18
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | openvswitch: add openvswitch-ipsesc package backAlexandru Ardelean2014-10-17
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | openvswitch: add openvswitch-python subpackageAlexandru Ardelean2014-10-17
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | Requires python package. Required by other openvswitch subpackages (like openvswitch-python). Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | Remove placeholder maintainer email addresscyanidium2014-10-15
| | | |