aboutsummaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAge
* uvol: fix regression in handling fractional megabytes freePhilip Prindeville2023-01-23
| | | | | | Also, fix off-by-one issue when computing free size. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* crun: add libgcrypt dependencyTianling Shen2023-01-22
| | | | | | Fixes: ad0aa1b2fc64e8 ("crun: update to 1.7.2") Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* Merge pull request #20330 from dhewg/lrzszHannu Nyman2023-01-21
|\ | | | | lrzsz: update to v0.12.21rc and fix a CVE
| * lrzsz: update to v0.12.21rc and fix a CVEAndre Heider2023-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This updates to v0.12.21rc from 1999 (sic), which was never officially released. There're fixes in there, and it's what debian ships, so let's use that too. While at it, use debian's autohell hack and package description too. Patch 1 fixes a hang with musl. Patch 2 fixes CVE-2018-10195, add PKG_CPE_ID while at it. Refesh the rest. Fixes: CVE-2018-10195 Signed-off-by: Andre Heider <a.heider@gmail.com>
* | nano: update to 7.2Hannu Nyman2023-01-21
| | | | | | | | | | | | Update nano editor to version 7.2. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | treewide: quote CC and CXXPaul Fertser2023-01-20
| | | | | | | | | | | | | | When CC is set to e.g. "ccache mips-openwrt-linux-musl-gcc" it needs to be quoted to avoid word splitting on substitution. Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* | openocd: select new libjaylinkKarl Palsson2023-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | Without the +select, openocd's internal autoselection between internal libjaylink and external libjaylink can result in linking against external, without the depends declaration, leading to missing depdendencies errors. Hard depend on the external libjaylink, as that's the future direction anyway. Reported-by: Paul Fertser <fercerpav@gmail.com> Signed-off-by: Karl Palsson <karlp@etactica.com>
* | openocd: update to 0.12.0Paul Fertser2023-01-20
| | | | | | | | Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* | efibootmgr: new packageOskari Rauta2023-01-18
| | | | | | | | | | Co-authored-by: Tianling Shen <cnsztl@gmail.com> Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | Merge pull request #20256 from TDT-AG/pr/20230109-acpica-unixFlorian Eckert2023-01-18
|\ \ | | | | | | acpica-unix: update version and fix gcc12 build
| * | acpica-unix: backport pending patches to fix gcc12 build issueFlorian Eckert2023-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to the compiler change of openwrt, from gcc version 11 to gcc version 12, we have now the following build errors. ../../../source/components/utilities/utdebug.c: In function 'AcpiUtInitStackPtrTrace': ../../../source/components/utilities/utdebug.c:188:31: error: storing the address of local variable 'CurrentSp' in 'AcpiGbl_EntryStackPointer' [-Werror=dangling-pointer=] 188 | AcpiGbl_EntryStackPointer = &CurrentSp; | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~ ../../../source/components/utilities/utdebug.c:185:29: note: 'CurrentSp' declared here 185 | ACPI_SIZE CurrentSp; | ^~~~~~~~~ In file included from ../../../source/include/acpi.h:173, from ../../../source/components/utilities/utdebug.c:154: ../../../source/include/acglobal.h:335:41: note: 'AcpiGbl_EntryStackPointer' declared here 335 | ACPI_GLOBAL (ACPI_SIZE *, AcpiGbl_EntryStackPointer); | ^~~~~~~~~~~~~~~~~~~~~~~~~ ../../../source/include/acpixf.h:188:17: note: in definition of macro 'ACPI_GLOBAL' 188 | extern type name | ^~~~ cc1: all warnings being treated as errors make[4]: *** [../Makefile.rules:20: obj/utdebug.o] Error 1 This is already issue opend in the the upstream project acpica. https://github.com/acpica/acpica/issues/771 There is already a fix available, but it has not yet been merged. https://github.com/acpica/acpica/pull/776 Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | acpica-unix: remove autoreleaseFlorian Eckert2023-01-09
| | | | | | | | | | | | | | | | | | While we're at it, let's also remove the deprecated feature autorelease. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | acpica-unix: update to 20221020Florian Eckert2023-01-09
| | | | | | | | | | | | | | | | | | | | | | | | The latest upstream version has an incorrect file name (tar_0.gz). Therefore, there is an error when unpacking the acrhive, as this is not recognised correctly. To fix this, PKG_CAT is set. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | Merge pull request #20313 from neheb/10Alexandru Ardelean2023-01-17
|\ \ \ | | | | | | | | stress: update to 1.0.5
| * | | stress: update to 1.0.5Rosen Penev2023-01-14
| | | | | | | | | | | | | | | | | | | | | | | | New upstream. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | podman: update to 4.3.1Oskari Rauta2023-01-16
| | | | | | | | | | | | | | | | Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | | | yq: Update to 4.30.8Tianling Shen2023-01-16
| |_|/ |/| | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | rtl-sdr: switch to git tarballRosen Penev2023-01-14
| | | | | | | | | | | | | | | | | | Upstream switched URLs. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | flashrom: update to 1.2.1Rosen Penev2023-01-14
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | pcsc-tools: update to 1.6.1Rosen Penev2023-01-14
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | pigz: update to 2.7Rosen Penev2023-01-14
|/ / | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | bc: use @DEBIANRosen Penev2023-01-14
| | | | | | | | | | | | Seems Debian no longer offers ftp. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | qfirehose: new packageOskari Rauta2023-01-14
| | | | | | | | Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | yq: Update to 4.30.7Tianling Shen2023-01-14
| | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | xz: update to version 5.4.1Hannu Nyman2023-01-14
| | | | | | | | | | | | Update to 5.4.1 (keep in sync with xz in tools/) Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | evtest: update to 1.35Rosen Penev2023-01-13
| | | | | | | | | | | | | | Switch to git tarballs as the old freedesktop cgit doesn't work properly anymore. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | bluez: update to version 5.66Daniel Golle2023-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ver 5.66: Fix issue with A2DP and transport connection collisions. Fix issue with allowing application specific error codes. Fix issue with not setting initiator flag correctly. Fix issue with HoG Report MAP size handling. Add initial support for Basic Audio Profile. Add initial support for Volume Control Profile. ver 5.65: Fix issue with A2DP cache invalidation handling. Fix issue with A2DP and not initialized SEP codec. Fix issue with A2DP and multiple SetConfiguration to same SEP Fix issue with AVRCP and not properly initialized volume. Fix issue with SDP records when operating in LE only mode. Fix issue with HoG and not reading report map of instances. Fix issue with GATT server crashing while disconnecting. Fix issue with not removing connected devices. Fix issue with enabling wake support without RPA Resolution. Fix issue with pairing failed due to the error of Already Paired. Add support for CONFIGURATION_DIRECTORY environment variable. Add support for STATE_DIRECTORY environment variable. Add support for "Bonded" property with Device API. Add experimental support for ISO socket. Package btmon in new package 'bluez-utils-btmon' to prevent adding glib2 it now requires as a dependency for all of bluez-utils. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | stress-ng: bump to version 0.15.01Alexandru Ardelean2023-01-13
| | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | conmon: update to 2.1.5Oskari Rauta2023-01-11
| | | | | | | | Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | crun: update to 1.7.2Oskari Rauta2023-01-11
| | | | | | | | Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | docker-compose: Update to version 2.15.1Javier Marcet2023-01-09
|/ | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* Merge pull request #20227 from the2masters/dfu-programmerHannu Nyman2023-01-07
|\ | | | | dfu-programmer: update to 1.0.0
| * dfu-programmer: update to 1.0.0Stefan Hellermann2023-01-05
| | | | | | | | | | | | | | | | | | | | | | The project website http://dfu-programmer.github.io seams dead, but there are new releases on github. They just released 1.0.0, update to it. I removed docs, bash-completion and the fedora spec file from configure.ac to fix cross compilation problems. Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
* | docker-compose: Update to version 2.15.0Javier Marcet2023-01-06
| | | | | | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* | syncthing: update to 1.23.0Van Waholtz2023-01-05
|/ | | | Signed-off-by: Van Waholtz <brvphoenix@gmail.com>
* libnetwork: Update to dcdf8f1 for Docker v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* containerd: Update to v1.6.13 for Docker v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* docker: Update to v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* dockerd: Update to v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* tree: bump to 2.1.0John Audia2022-12-31
| | | | | | | | Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* Merge pull request #20170 from blocktrron/zyxel-resetDavid Bauer2022-12-26
|\ | | | | zyxel-reset: add package
| * zyxel-reset: add packageDavid Bauer2022-12-25
| | | | | | | | | | | | | | | | | | | | | | | | | | Add the zyxel-reset package. This package allows to trigger a factory-reset for ZyXEL devices by sending a magic LLDP package while the device-to-reset is booting. This is useful for remote-resetting a ZyXEL device running stock firmware connected to a switch using OpenWrt. It also allows to reset devices which do not have a reset-button such as the NWA55AXE. Signed-off-by: David Bauer <mail@david-bauer.net>
* | yq: Update to 4.30.6Tianling Shen2022-12-25
|/ | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* gnupg2: refresh GCC options in MakefileTony Butler2022-12-22
| | | | | | | | | | | | | | | | | this Makefile still used `CONFIG_GCC_USE_VERSION_*` to select various compilation options, for GCC versions that are antiquated convert to parsing the major from the `CONFIG_GCC_VERSION` which will always exist and can also be used with range logic intent seemed to be: * `-DEXTERN_UNLESS_MAIN_MODULE=static` for "=10" (and newer, probably) * no additional options for "not =10" (or older, probably) GCC 11 or 12 would likely revert to the default (not =10) option, because 10 was the newest at the time, and 11 and 12 are "not 10" Signed-off-by: Tony Butler <spudz76@gmail.com>
* quota: update to 4.09W. Michael Petullo2022-12-22
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lxc: Remove AUTORELEASEHauke Mehrtens2022-12-22
| | | | | | The previous version used PKG_RELEASE:=3. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* lxc: Fix compilation with glibc 2.36Hauke Mehrtens2022-12-22
| | | | | | | | | | | Backport patches from upstream lxc master to fix compilation against glibc 2.36. The changes were added in these pull requests: https://github.com/lxc/lxc/pull/4179 https://github.com/lxc/lxc/pull/4181 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* docker-compose: Update to version 2.14.2Javier Marcet2022-12-22
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* gawk: update to version 5.2.1Daniel Golle2022-12-20
| | | | | | | | | | | | | | | | | | | | | | | | | | Changes from 5.2.0 to 5.2.1 --------------------------- 1. Infrastructure upgrades: PMA version Avon 8. 2. Issues related to the sign of NaN and Inf values on RiscV have been fixed; gawk now gives identical results on that platform as it does on others. 3. A few issues with the debugger have been fixed. 4. More subtle issues with untyped array elements being passed to functions have been fixed. 5. The rwarray extension's readall() function has had some bugs fixed. 6. The PMA allocator is now supported on FreeBSD, OpenBSD and Linux on S/390x. Is is now supported also on both Intel and M1 macOS systems. 7. There have been several minor code cleanups and bug fixes. See the ChangeLog for details. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* cni-plugins: update to version 1.1.1Daniel Golle2022-12-20
| | | | | | For details see https://github.com/containernetworking/plugins/releases Signed-off-by: Daniel Golle <daniel@makrotopia.org>