aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* ddns-scripts: add one.com providerLuca Conte2022-01-27
| | | | Signed-off-by: Luca Conte <main@lugico.de>
* frr: update to latestLucian Cristian2022-01-18
| | | | | | also fix mips compile Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* tcsh: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | tcsh requires host-tool (gethost) to generate tc.defs.c file. To build this tool on macos, it is required to run ./configure script wihout target vars/flags, but this package is not splitted to host and target build. This patch splits build to host and target builds to compile host-tool(gethost) first, then compile tsch. Due to lack of support of separate building host and target, OpenWrt Makefile is modified to do it in the order below: 1. build host-tool (gethost) 2. build sh.err.h header for target 3. build tc.const.h header for target 4. copy gethost tool from host staging dir to target build dir 5. touch (make -t) gethost to protect it from recompiling 6. build tsch for target It is required to do step 2 and 3 because 'make -t' generates empty files but these files required to build tcsh Patch 020-cross.patch has been removed due to not required anymore (gethost build is separated and not affected by target configure flags and vars) Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* perl-device-serialport: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | | | | ./configure script detects macos specific system headers (IOKit/serial/ioss.h and sys/ttycom.h) that are not available during compile time. There is no way to pass ac_cv_* vars to ./configure script due to perl wrappers To fix this issue, fake(empty) headers provided during compile time if build host is MacOS Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* python-curl: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | setup.py detects macos (darwin) and adds -flat_namespace flag. This flag is not compatible with GCC that is used to compile target. This patch patch disables darwin detection Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* git: update to version 2.34.1Josef Schlehofer2022-01-18
| | | | | | | | | | | | - Refreshed patches - Release notes 2.34.0: https://github.com/git/git/blob/2ae0a9cb8298185a94e5998086f380a355dd8907/Documentation/RelNotes/2.34.0.txt - Release notes 2.34.1: https://github.com/git/git/blob/2ae0a9cb8298185a94e5998086f380a355dd8907/Documentation/RelNotes/2.34.1.txt Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* mdio-tools: update to version 1.0.1Robert Marko2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | Version 1.0.1 brought the following changes: [v1.0.1] - 2021-11-26 Primarily fixes a few issues in the kernel module that were found during a quick review from Russell King: https://lore.kernel.org/netdev/YYPThd7aX+TBWslz@shell.armlinux.org.uk/ https://lore.kernel.org/netdev/YYPU1gOvUPa00JWg@shell.armlinux.org.uk/ - mdio: The mvls subcommand now supports flushing the ATU - mdio-netlink: Plug some glaring holes around integer overflows of the PC. - mdio-netlink: Release reference to MDIO bus after a transaction completes. So, update to the latest version and switch the kernel module back to fetching tarballs like the userspace tool does. Signed-off-by: Robert Marko <robimarko@gmail.com>
* libunistring: update to 1.0Espen Jürgensen2022-01-18
| | | | Signed-off-by: Espen Jürgensen <espenjurgensen+openwrt@gmail.com>
* lpc21isp: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | lpc21isp Makefile detects Darwin and defines __APPLE__ that is not required for cross-compile build for OpenWrt This patch sets OSTYPE="Linux" due to OpenWrt is always Linux Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* cryptsetup: update to version 2.4.3Josef Schlehofer2022-01-18
| | | | | | Fixes: CVE-2021-4122 Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* wg-installer: cosmetic changesNick Hainke2022-01-18
| | | | | | Use "ip addr" instead of "ip addres" or "ip a". Signed-off-by: Nick Hainke <vincent@systemli.org>
* Merge pull request #17624 from jefferyto/python-3.10.2Josef Schlehofer2022-01-18
|\ | | | | python3: Update to 3.10.2, refresh patches
| * python3: Update to 3.10.2, refresh patchesJeffery To2022-01-17
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | crowdsec: update from upstream latest release 1.2.3Kerma Gérald2022-01-18
| | | | | | | | | | | | | | update from latest upstream release 1.2.3 updated copyright Signed-off-by: Kerma Gérald <gandalf@gk2.net>
* | Merge pull request #17497 from corna/dockerd_log_driverFlorian Eckert2022-01-18
|\ \ | | | | | | dockerd: Add "log-driver" option
| * | dockerd: Add "log-driver" optionNicola Corna2022-01-04
| | | | | | | | | | | | Signed-off-by: Nicola Corna <nicola@corna.info>
* | | Merge pull request #17586 from clayface/davfs2-secretsFlorian Eckert2022-01-18
|\ \ \ | | | | | | | | davfs2: add secrets file to conffiles definition
| * | | davfs2: add secrets file to conffiles definitionMatthew Hagan2022-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | davfs2 username and password information is typically stored in /etc/davfs2/secrets. This information should be kept across sysupgrades. Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
* | | | luaossl: fix build on macosSergey V. Lobanov2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | luaossl detects OS and changes compilation flags depends on OS. If Darwin is detected then it adds GCC non-compatible flags. OpenWrt is always Linux so build OS detection is disabled Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | diffutils: update to 3.8Rosen Penev2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation with newer glibc. Ported gnulib patch from m4. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | hwinfo: fix build on macosSergey V. Lobanov2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hwinfo host-compile builds hwinfo entirely that is not really required. It is required to build only some host tools to generate ids and isdn related C-code This patch changes host build to build only required host tools Added patch to remove malloc.h using as deprecated, not required and not supported on macos system (stdlib.h has required functions on Linux and MacOS systems) Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | neon: fix build on macosSergey V. Lobanov2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | neon detects Darwin on target build and fails due to darwin-specific build behaviour. OS detection is disable (as non required) via ne_cv_os_uname=Linux as a part of CONFIGURE_VARS Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | redsocks: fix build on macosSergey V. Lobanov2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix cross-compile issues (on macos) use $CC -dumpmachine instead of `uname` use $CC instead of CC Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | libreswan: update to 4.6Lucian Cristian2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | this update also fixes a CVE Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | expat: bump to version 2.4.3Sebastian Kemper2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CVE-2021-45960 CVE-2021-46143 CVE-2022-22822 CVE-2022-22823 CVE-2022-22824 CVE-2022-22825 CVE-2022-22826 CVE-2022-22827 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | qemu: add seccomp featureVladimir Ermakov2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch add an option to enable seccomp support, adds dependency on libseccomp. Signed-off-by: Vladimir Ermakov <vooon341@gmail.com>
* | | | qemu: update to 6.2.0Vladimir Ermakov2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Qemu version updated to 6.2.0, patch set refreshed for it. Options --disable-jemalloc --disable-tcmalloc was replaced by --enable-malloc=CHOICE, defaults to system. Libudev search was moved from configure to meson.build, and now it's not so easy to disable it. Even though --disable-mpath present. Delete patches 0008-falloc and 0009-fs - they're already in 6.2.0. Signed-off-by: Vladimir Ermakov <vooon341@gmail.com>
* | | | knxd: bump to new upstream version 0.14.53Othmar Truniger2022-01-17
| | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | dawn: update to 2022-01-17Nick Hainke2022-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 877e2dc iwinfo: fix get_bandwidth_iwinfo 9ce01ec datastorage: fix multi-SSID 9187665 treewide: improve maintaince 6bf9b6d memory: Tighten up some memory handling to help spot errors 4df0c98 treewide: improve logging Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | Merge pull request #17623 from mhei/mmc-utilsMichael Heimpold2022-01-17
|\ \ \ \ | |_|_|/ |/| | | mmc-utils: update to latest git head
| * | | mmc-utils: update to latest git headMichael Heimpold2022-01-16
| | | | | | | | | | | | | | | | | | | | | | | | While at, update project's reference URL. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | Merge pull request #17534 from neheb/4Michael Heimpold2022-01-16
|\ \ \ \ | |/ / / |/| | | knxd: fix compilation with newer glibc
| * | | knxd: fix compilation with newer glibcRosen Penev2022-01-08
| | | | | | | | | | | | | | | | | | | | | | | | the link variable conflicts with the link() function. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | wg-installer: switch to ubus call for olsrd hotplugNick Hainke2022-01-16
| | | | | | | | | | | | | | | | | | | | | | | | Use ubus ipc calls to add and remove interfaces. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | wg-installer: rework iproute2 commandsNick Hainke2022-01-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use ip address add instead of ip a a - Directly add broadcast address Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | Merge pull request #17617 from hgl/ddns-cloudflareFlorian Eckert2022-01-15
|\ \ \ \ | | | | | | | | | | ddns-scripts-cloudflare: fix shell conditional
| * | | | ddns-scripts-cloudflare: fix shell conditionalGlen Huang2022-01-15
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Glen Huang <heyhgl@gmail.com>
* | | | | Merge pull request #17600 from camarel/feature/ddns-scripts-wget-user-agentFlorian Eckert2022-01-15
|\ \ \ \ \ | | | | | | | | | | | | ddns-scripts: pass user agent string
| * | | | | ddns-scripts: pass user agent stringClaudio Marelli2022-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a user agent string to the wget request. Fixes #17507 Signed-off-by: Claudio Marelli <camarelli@gmx.net>
* | | | | | Merge pull request #17432 from r4sas/i2pd-2.40.0Josef Schlehofer2022-01-14
|\ \ \ \ \ \ | | | | | | | | | | | | | | i2pd: Update to 2.40.0, update init.rc script, UCI config and Makefile
| * | | | | | i2pd: Update to 2.40.0 and update package sourcesR4SAS I2P2022-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Updating i2pd package to 2.40.0 * Rewrite Makefile * Remove usage of PKG_INSTALL (package's make install) * Rewrite init.rc configuration and script * Remove '--service' option from init, which only sets datadir to /var/lib/i2pd * Use '--datadir' option in init, otherwise datadir changing via uci is not works * Update patch for i2pd.conf Signed-off-by: R4SAS I2P <r4sas@i2pmail.org>
* | | | | | | Merge pull request #17608 from miska/mariadb-owner-fixJosef Schlehofer2022-01-14
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Mariadb owner fix & sudo dependency
| * | | | | | | mariadb: Add sudo dependencyMichal Hrusecky2022-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During update we use sudo to start an instance. It probably could be workarounded, but given the MariaDB size, dependency on sudo shouldn't be an issue. Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
| * | | | | | | mariadb: Check and fix datadir owner issues during upgradeMichal Hrusecky2022-01-14
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you are migrating to MariaDB package, you might have old datadir stored somewhere using different setup with different users. If you trust us enough to enable autoupgrade, you probably trust us enough to chown your datadir as well. This can prevent some potential issues. Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
* | | | | | | CI: fix runtime testing for non master branchPaul Spooren2022-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The runtime testing always ran on master branch aka snapshots since the branch wasn't passed over to the container execution! Signed-off-by: Paul Spooren <mail@aparcar.org>
* | | | | | | Merge pull request #16389 from paper42/apparmor-3.0.3Jeffery To2022-01-14
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | apparmor: cleanup
| * | | | | | | apparmor: cleanupMichal Vasilek2022-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * replace 020-fix-ss-path.patch with an upstream patch 020-remove-which-dep.patch * remove 030-remove-pynotify2-dep.patch and do not install aa-notify * simplify 060-openwrt-dnsmasq-profile.patch * add two upstream patches for Python 3.10 compatibility * add an upstream patch to move from deprecated distutils which broke the build with Python 3.10+ Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
* | | | | | | | modemmanager: remove 2s timeout before reporting cached eventsAleksander Morgado2022-01-13
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When ModemManager is started on boot we may end up with hotplug events reported directly to the daemon, plus some others already cached in the cache file before the daemon was started. If the cached events correspond to the same device that is still notifying ports directly, we may end up with a modem object created before the cached events have been emitted, so the modem may not handle all control/data ports it should. E.g.: - modem detected - hotplug event for wwan0 port, cached as MM not running - hotplug event for cdc-wdm0 port, cached as MM not running - hotplug event for ttyUSB0, cached as MM not running - MM starts - hotplug event for ttyUSB1, directly processed as MM is running - hotplug event for ttyUSB2, directly processed as MM is running - modem object created with ttyUSB1 and ttyUSB2 - 2s after MM starts, cached events for wwan0, cdc-wdm0 and ttyUSB0 happen, but are ignored because the modem object has already been created MM expects that ports of the same device are reported with less than 1500ms in between ports. In other words, if ports are reported more than 1500ms after the last reported port, they may get ignored. If we remove the 2s timeout, the report of the cached events will happen as soon as MM starts, which makes it much more likely to happen in the timeslot that MM expects for ports of the same device reported. The logic is still not perfect, and we may also need to increase that 1500ms timeout inside MM, but removing the 2s timeout right away here makes sense. This 2s timeout was introduced along with the new wrapper launcher for the daemon, it didn't exist before. Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
* | | | | | | gpgme: Fix compile with glibc 2.34Hauke Mehrtens2022-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This backports a patch from upstream gpgme to fix compilation with glibc 2.34. It fixes the following build problem: posix-io.c: In function '_gpgme_io_spawn': posix-io.c:577:23: error: void value not ignored as it ought to be 577 | while ((i = closefrom (fd)) && errno == EINTR) | ^ make[5]: *** [Makefile:947: posix-io.lo] Error 1 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* | | | | | | netdata: Update init script to use -D rather than -ndJames White2022-01-13
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current init script is using the deprecated -nd flag. This updates netdata to be started with -D. Signed-off-by: James White <james@jmwhite.co.uk>