- Jan 22, 2024
-
-
Andreas Gnau authored
Instead of /sbin/ install logread to /usr/sbin/logread. This works around a conflict with the logd package. Signed-off-by:
Andreas Gnau <andreas.gnau@iopsys.eu>
-
- Oct 31, 2023
-
-
Christian Marangi authored
Move to PCRE2 library as PCRE is not EOL and won't receive any security updates anymore. Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com> (cherry picked from commit 3dfb00c6c6758524282c6fa4a1995280ea613e9c)
-
- Oct 12, 2023
-
-
Jeffery To authored
This allows cargo to use make's jobserver when building packages, by marking the cargo command as recursive (with the + prefix[1]) and setting MAKEFLAGS. This also: * Give cargo/x.py the build directory instead of having to change the current directory (and opening subshells) * Set PKG_BUILD_PARALLEL/HOST_BUILD_PARALLEL for Rust packages to enable the use of make's jobserver [1]: https://www.gnu.org/software/make/manual/html_node/POSIX-Jobserver.html Signed-off-by:
Jeffery To <jeffery.to@gmail.com> (cherry picked from commit 0dfc1b508d5e5b361978ef9783cb63775176c305) [omit changes to arp-whisper and procs] Signed-off-by:
Jeffery To <jeffery.to@gmail.com>
-
- Oct 04, 2023
-
-
Josef Schlehofer authored
- Release notes: https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.4.0 - Bump version in config file Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 4dd49d7c3cd571107958154f1ed1ec8d8dba7464)
-
- Sep 20, 2023
-
-
Alexandru Ardelean authored
Signed-off-by:
Alexandru Ardelean <alex@shruggie.ro> (cherry picked from commit a1edb560836c4710b6f536b34df042ee4549fdf2)
-
Alexandru Ardelean authored
Signed-off-by:
Alexandru Ardelean <alex@shruggie.ro> (cherry picked from commit 7953466d7f78ba4ff28a9a4b705f09e46585e2eb)
-
- Sep 16, 2023
-
-
Josef Schlehofer authored
Since February 2023, I decided to no longer work with Turris, I mean CZ.NIC company due to some reasons how the development goes and since that day my work address is not available and not sure if there is some redirect to someone else, but if anyone wants to reach me, use my email address, where they can find me. Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 1e1b2051db47a82513f4eb4e9da892207785b7e2)
-
- Sep 15, 2023
-
-
Josef Schlehofer authored
Makefile changes: - Since version 4.3.0, there is required to use pcre2 instead of pcre Reference: https://github.com/syslog-ng/syslog-ng/pull/4537 - Disable c++ support by default to avoid picking libstdcpp dependency Reference: https://github.com/syslog-ng/syslog-ng/pull/4484 Config changes: - Bump version in config file Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit c43599b0c885bbb3b6aae2cac34aa8d526fb8274)
-
- Sep 02, 2023
-
-
Luca Barbato authored
Bottom is a top/htop workalike with few additional features, written in rust. Signed-off-by:
Luca Barbato <lu_zero@gentoo.org> (cherry picked from commit f3a6491674ab451535e392b63e94a545abf3f292)
-
- Jun 05, 2023
-
-
Jeffery To authored
Zabbix moved the 6.2 directory from "stable" into "oldstable". This adds the "oldstable" URL to PKG_SOURCE_URL. Signed-off-by:
Jeffery To <jeffery.to@gmail.com> (cherry picked from commit c196aac4b121f434639db90272cb60507aa687f1)
-
- May 20, 2023
-
-
W. Michael Petullo authored
Signed-off-by:
W. Michael Petullo <mike@flyn.org>
-
- May 16, 2023
-
-
Nick Hainke authored
_LARGEFILE64_SOURCE has to be defined in the source, or CFLAGS can be used to pass -D_LARGEFILE64_SOURCE to allow to keep using LFS64 definitions. Fixes errors in the form of: Compiling src/linux/btop_collect.cpp src/linux/btop_collect.cpp: In function 'Mem::mem_info& Mem::collect(bool)': src/linux/btop_collect.cpp:1082:58: error: aggregate 'Mem::collect(bool)::statvfs64 vfs' has incomplete type and cannot be defined 1082 | struct statvfs64 vfs; | ^~~ src/linux/btop_collect.cpp:1083:79: error: invalid use of incomplete type 'struct Mem::collect(bool)::statvfs64' 1083 | if (statvfs64(mountpoint.c_str(), &vfs) < 0) { | ^ src/linux/btop_collect.cpp:1082:48: note: forward declaration of 'struct Mem::collect(bool)::statvfs64' 1082 | struct statvfs64 vfs; | ^~~~~~~~~ make[3]: *** [Makefile:274: obj/linux/btop_collect.o] Error 1 make[3]: Leaving directory '/home/nick/openwrt/build_dir/target-aarch64_cortex-a53_musl/btop-1.2.13' make[2]: *** [Makefile:53: /home/nick/openwrt/build_dir/target-aarch64_cortex-a53_musl/btop-1.2.13/.built] Error 2 make[2]: Leaving directory '/home/nick/openwrt/feeds/packages/admin/btop' time: package/feeds/packages/btop/compile#2.57#0.17#3.02 ERROR: package/feeds/packages/btop failed to build. Signed-off-by:
Nick Hainke <vincent@systemli.org>
-
- May 14, 2023
-
-
Christian Marangi authored
Fix compilation warning for missing fallthrough. Fix compilation warning: /builder/shared-workdir/build/build_dir/target-mipsel_24kc_musl/netatop-3.1/module/netatop.c: In function 'getsockopt': /builder/shared-workdir/build/build_dir/target-mipsel_24kc_musl/netatop-3.1/module/netatop.c:1619:26: error: this statement may fall through [-Werror=implicit-fallthrough=] 1619 | tasktype = 'g'; | ~~~~~~~~~^~~~~ /builder/shared-workdir/build/build_dir/target-mipsel_24kc_musl/netatop-3.1/module/netatop.c:1621:12: note: here 1621 | case NETATOP_GETCNT_PID: | ^~~~ cc1: all warnings being treated as errors Signed-off-by:
Christian Marangi <ansuelsmth@gmail.com>
-
- Apr 21, 2023
-
-
Paul Fertser authored
Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by:
Paul Fertser <fercerpav@gmail.com>
-
- Apr 12, 2023
-
-
Josef Schlehofer authored
- Release notes: https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.1.1 - Updated version in config Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
- Apr 08, 2023
-
-
Andre Heider authored
See commit da370098 "treewide: add support for "gc-sections" in PKG_BUILD_FLAGS" on the main repository. Note: This only touches packages which use all three parts (-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by this build flag. Some packages only use a subset, and these are left unchanged for now. Signed-off-by:
Andre Heider <a.heider@gmail.com>
-
Andre Heider authored
See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with PKG_BUILD_FLAGS:=no-mips16" on the main repository. Signed-off-by:
Andre Heider <a.heider@gmail.com>
-
- Mar 23, 2023
-
-
Alexandru Ardelean authored
Signed-off-by:
Alexandru Ardelean <alex@shruggie.ro>
-
- Feb 05, 2023
-
-
John Audia authored
Build-tested: x86/64 Run-tested: bcm2711/RPi4B Signed-off-by:
John Audia <therealgraysky@proton.me>
-
- Feb 04, 2023
-
-
Alexandru Ardelean authored
Signed-off-by:
Alexandru Ardelean <alex@shruggie.ro>
-
- Nov 15, 2022
-
-
Tianling Shen authored
Signed-off-by:
Tianling Shen <cnsztl@immortalwrt.org>
-
Tianling Shen authored
btop reads the `LANG` env variable to delect if the system has utf8 support, which exists on common Linux distributions. However, OpenWrt does not ship it, and results in btop reporting "No UTF-8 locale detected!". Users have to manually pass `--utf-force` to make btop happy. To make it OOTB, append `--utf-force` argument by default via alias. Signed-off-by:
Tianling Shen <cnsztl@immortalwrt.org>
-
- Nov 07, 2022
-
-
Alexandru Ardelean authored
Fixes: https://github.com/openwrt/packages/issues/19816 Signed-off-by:
Alexandru Ardelean <ardeleanalex@gmail.com>
-
- Nov 04, 2022
-
-
Jacky Guo authored
Signed-off-by:
Jacky Guo <leickwell@hotmail.com>
-
- Oct 31, 2022
-
-
Alexandru Ardelean authored
Signed-off-by:
Alexandru Ardelean <ardeleanalex@gmail.com>
-
- Oct 19, 2022
-
-
Tianling Shen authored
Resource monitor that shows usage and stats for processor, memory, disks, network and processes. Signed-off-by:
Tianling Shen <cnsztl@immortalwrt.org>
-
- Oct 17, 2022
-
-
Florian Eckert authored
This change makes it possible to build zabbix with sqlite3 support. Attention: By selecting "SQLite" as "Database Software" you are not able to build the zabbix-server and zabbix-server-frontend package anymore. This database is not supported for this service. Signed-off-by:
Florian Eckert <fe@dev.tdt.de>
-
- Oct 13, 2022
-
-
Scott Roberts authored
opkg does not offer ssl varients: zabbix-agentd zabbix-sender zabbix-get zabbix-proxy zabbix-server resolve this by adding ssl varients. Signed-off-by:
Scott Roberts <ttocsr@gmail.com> (cherry picked from commit cd48d03f)
-
- Oct 06, 2022
-
-
Scott Roberts authored
opkg does not offer ssl varients: zabbix-agentd zabbix-sender zabbix-get zabbix-proxy zabbix-server resolve this by adding ssl varients. Signed-off-by:
Scott Roberts <ttocsr@gmail.com>
-
- Sep 26, 2022
-
-
Scott Roberts authored
Refreshed patches. Signed-off-by:
Scott Roberts <ttocsr@gmail.com>
-
- Sep 22, 2022
-
-
Nick Hainke authored
The license identifier has a typo. Fix it. Use SPDX instead of license boilerplate. Signed-off-by:
Nick Hainke <vincent@systemli.org>
-
Nick Hainke authored
The license identifier has a typo. Fix it. Use SPDX instead of license boilerplate. Signed-off-by:
Nick Hainke <vincent@systemli.org>
-
- Sep 09, 2022
-
-
Javier Marcet authored
conceived and developed for many years by Roger Leigh Signed-off-by:
Javier Marcet <javier@marcet.info>
-
- Sep 08, 2022
-
-
Josef Schlehofer authored
- Release notes: https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-3.38.1 - Update the configuration file to use version 4.0 as mentioned in the release notes to try the latest changes Fixes: CVE-2022-38725 Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 34b7af9e)
-
- Sep 07, 2022
-
-
Josef Schlehofer authored
- Release notes: https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-3.38.1 - Update the configuration file to use version 4.0 as mentioned in the release notes to try the latest changes Fixes: CVE-2022-38725 Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
- Aug 26, 2022
-
-
Petr Štetiar authored
With heavy system logging which goes by default into `/var/log/messages` log file which is usually placed in tmpfs/RAM one can trigger OOM killer fairly easily, thus killing random processes and in some cases making system unusable. This is likely happening due to the fact, that Linux by default uses 1/2 of available RAM for tmpfs, which might be for example an issue on low RAM devices with ath10k wireless. So let's fix it by adding logrotate functionality which should limit the size of `/var/log/messages` log file to 1M by default, but could be tweaked by config knob if needed be. Signed-off-by:
Petr Štetiar <ynezz@true.cz> (cherry picked from commit 660fa63f)
-
Petr Štetiar authored
With heavy system logging which goes by default into `/var/log/messages` log file which is usually placed in tmpfs/RAM one can trigger OOM killer fairly easily, thus killing random processes and in some cases making system unusable. This is likely happening due to the fact, that Linux by default uses 1/2 of available RAM for tmpfs, which might be for example an issue on low RAM devices with ath10k wireless. So let's fix it by adding logrotate functionality which should limit the size of `/var/log/messages` log file to 1M by default, but could be tweaked by config knob if needed be. Signed-off-by:
Petr Štetiar <ynezz@true.cz>
-
- Aug 03, 2022
-
-
Florian Eckert authored
If fping is not installed on the system the following message is show if hosts should be monitored via icmp. Log-Message: "At least one of '/usr/sbin/fping', '/usr/sbin/fping6' must exist. Both are missing in the system." To fix this also, add a dependency to 'fping' for 'zabbix-server' and 'zabbix-proxy' for installation to allow icmp hosts monitoring. Signed-off-by:
Florian Eckert <fe@dev.tdt.de>
-
- Jul 14, 2022
-
-
Rosen Penev authored
GCC12 doesn't implement some security flags used by sudo. Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- Jul 07, 2022
-
-
Giacomo Sanchietti authored
Signed-off-by:
Giacomo Sanchietti <giacomo.sanchietti@nethesis.it>
-