aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | Merge pull request #12848 from BKPepe/squidRosen Penev2020-07-20
|\ \ \ \ \ \ | |/ / / / / |/| | | | | squid: update to version 4.12 (security update)
| * | | | | squid: update to version 4.12Josef Schlehofer2020-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixes CVEs: CVE-2019-12519 CVE-2019-12520 CVE-2019-12521 CVE-2019-12523 CVE-2019-12524 CVE-2019-12525 CVE-2019-12526 CVE-2019-12527 CVE-2019-12528 CVE-2019-12529 CVE-2019-12824 CVE-2019-12854 CVE-2019-13345 CVE-2019-18676 CVE-2019-18677 CVE-2019-18678 CVE-2019-18679 CVE-2020-8449 CVE-2020-8450 CVE-2020-11945 CVE-2020-14058 CVE-2020-15049 - Remove patch for cross-compilation The patch should not be included in the OpenWrt at all without any commit message/description. Is not needed and there should be used HOST variables instead of BUILD variables (e.g. HOSTCXX) However, the BUILDCXX is set in Makefile to HOSTCXX - Renumber glibc patch and refresh it Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | | Merge pull request #12814 from aaronjg/improvements/mwan3-misc-improvements-rbFlorian Eckert2020-07-20
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | mwan3: clean up ipv4/ipv6 duplicated code and misc. improvments
| * | | | | mwan3: fix IPv6 routing add handlingFlorian Eckert2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes routing handling. Introduced with the last version update. The following message disappears on the shell when mwan3 is called with 'mwna3 restart`. `Error: Invalid gateway address.` Signed-off-by: Florian Eckert <fe@dev.tdt.de> [aaronjg@stanford.edu: fully unset variable and handle ipv4 as well] Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: fix idx calculationFlorian Eckert2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de> [aaronjg@stanford.edu: fix syntax error] Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: version bumpAaron Goodman2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: cleanup duplicate ipv4 and ipv6 logicAaron Goodman2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: don't send iptable setup failures to /dev/nullAaron Goodman2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | silencing failing rules makes debugging more difficult Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: add default rule for ipv6 in example configAaron Goodman2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | default rule only applied to ipv4 with dest_ip 0.0.0.0/0 and error was hidden when trying to apply it in ip6table Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: don't try to use ipv6 if not installedAaron Goodman2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix issue #11826 Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: be more efficient with sleep after killing trackersAaron Goodman2020-07-16
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
| * | | | | mwan3: don't add single ipv4 to connected list if already covered by a cidrAaron Goodman2020-07-16
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
* | | | | | Merge pull request #12864 from aaronjg/bugfix/openfortivpn-pingRosen Penev2020-07-19
|\ \ \ \ \ \ | | | | | | | | | | | | | | openfortivpn: add host up test back
| * | | | | | openfortivpn: add option to use ither curl or ping to test host statusAaron Goodman2020-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | allow use of curl rather than ping to test if a host is up since a host may not respond to ping, but an https request is part of the openfortivpn connection, so this is a more reliable test also clean up overly verbose logging Signed-off-by: Aaron Goodman <aaronjg@stanford.edu>
* | | | | | | Merge pull request #12863 from neheb/flashRosen Penev2020-07-19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | flashrom: switch to building with meson
| * | | | | | | flashrom: switch to building with mesonRosen Penev2020-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added patches to fix meson compilation. Reworked flashrom.mk to work with meson. Several minor Makefile cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #12873 from neheb/lz4Rosen Penev2020-07-19
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | liblz4: convert to meson
| * | | | | | | | liblz4: convert to mesonRosen Penev2020-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Faster compilation Before: Executed in 13.68 secs fish external usr time 12.51 secs 0.00 micros 12.51 secs sys time 1.78 secs 345.00 micros 1.78 secs After: Executed in 9.60 secs fish external usr time 10.66 secs 281.00 micros 10.66 secs sys time 1.39 secs 36.00 micros 1.39 secs Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #12818 from neheb/ncdRosen Penev2020-07-19
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ncdu: update to 1.15.1
| * | | | | | | | | ncdu: update to 1.15.1Rosen Penev2020-07-15
| | |_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #12816 from neheb/nlohRosen Penev2020-07-19
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | nlohmannjson: update to 3.8.0
| * | | | | | | | | nlohmannjson: update to 3.8.0Rosen Penev2020-07-15
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add BUILDONLY since this is only used for the headers. Rearranged variables for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #12861 from neheb/apiRosen Penev2020-07-19
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | apinger: fix compilation with GCC 10
| * | | | | | | | apinger: fix compilation with GCC 10Rosen Penev2020-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #12870 from neheb/meson2Rosen Penev2020-07-19
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | meson: fix arch mapping
| * | | | | | | | | meson: fix arch mappingRosen Penev2020-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | meson uses a different architecture mapping than CONFIG_ARCH does. Fix the problematic ones and fall back to CONFIG_ARCH. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | Merge pull request #12876 from jefferyto/golang-1.14.6Rosen Penev2020-07-19
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | golang: Update to 1.14.6
| * | | | | | | | | | golang: Update to 1.14.6Jeffery To2020-07-20
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | Merge pull request #12860 from neheb/bfddRosen Penev2020-07-19
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | bfdd: fix compilation with GCC 10
| * | | | | | | | | | bfdd: fix compilation with GCC 10Rosen Penev2020-07-17
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | Merge pull request #12856 from neheb/fpiRosen Penev2020-07-18
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | fping: update to 4.3
| * | | | | | | | | | fping: update to 4.3Rosen Penev2020-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation with GCC 10. Backported upstream patch to fix compilation without IPv6. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | Merge pull request #12871 from neheb/zmqqRosen Penev2020-07-18
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | | zmq: switch to building with CMake
| * | | | | | | | | | zmq: switch to building with CMakeRosen Penev2020-07-18
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Faster compilation. Before: time make package/zmq/compile -j 12 Executed in 24.98 secs fish external usr time 97.41 secs 263.00 micros 97.40 secs sys time 12.51 secs 34.00 micros 12.51 secs After: time make package/zmq/compile -j 12 Executed in 18.17 secs fish external usr time 85.22 secs 248.00 micros 85.22 secs sys time 9.23 secs 32.00 micros 9.23 secs Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | Merge pull request #12854 from neheb/radsRosen Penev2020-07-18
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | memcached: update to 1.6.6
| * | | | | | | | | memcached: update to 1.6.6Rosen Penev2020-07-17
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation with GCC 10. Added PKG_BUILD_PARALLEL for faster compilation. Simplified configure var. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #12859 from neheb/gpgRosen Penev2020-07-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | gnupg: fix compilation with GCC10
| * | | | | | | | | gnupg: fix compilation with GCC10Rosen Penev2020-07-17
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A bit ugly but it works. Added PKG_BUILD_PARALLEL for faster compilation. Fix license information. Minor cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #12866 from Andy2244/wsdd2-netbios_name-uppercase-fixRosen Penev2020-07-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | wsdd2: Uppercase NB_PARM
| * | | | | | | | | wsdd2: Uppercase NB_PARMAndy Walsh2020-07-18
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Uppercase NB_PARM if mdns option is not set * filter commented lines Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* / / / / / / / / haveged: update to 1.9.13Hannu Nyman2020-07-18
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update haveged to version 1.9.13. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | | | | davfs2: fixup gettext-version againRosen Penev2020-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems this is still needed. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #12858 from neheb/radseToke Høiland-Jørgensen2020-07-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | radsecproxy: fix compilation with GCC10
| * | | | | | | | radsecproxy: fix compilation with GCC10Rosen Penev2020-07-17
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #12855 from neheb/ngiRosen Penev2020-07-17
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | ngircd: update to 26
| * | | | | | | | ngircd: update to 26Rosen Penev2020-07-17
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation with GCC10. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #12857 from neheb/rsy2Rosen Penev2020-07-17
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | rsyslog: update to 8.2006.0
| * | | | | | | rsyslog: update to 8.2006.0Rosen Penev2020-07-17
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation with GCC10. Added random mirror since the normal website has issues at this time. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | Merge pull request #12824 from neheb/progRosen Penev2020-07-17
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | progress: update to 0.15
| * | | | | | | progress: update to 0.15Rosen Penev2020-07-15
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix license information. Use PKG_INSTALL and PKG_BUILD_PARALLEL for consistency and faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>