diff options
| author | Nick Hainke | 2025-05-04 20:38:10 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-06-08 19:28:26 +0000 |
| commit | 898c336e895778ee6f5b37ce7a19f546c4b33467 (patch) | |
| tree | bb847f1f73bab53466f70976f87f086d152b4613 | |
| parent | fe37f2e52a16fdc201c27ce2451682a103b63e86 (diff) | |
| download | openwrt-898c336e895778ee6f5b37ce7a19f546c4b33467.tar.gz | |
tools/b43-tools: update to latest version, fix C23 build
Update b43-tools to the latest upstream version to fix a
compilation error with C23:
util.h:25:15: error: 'bool' cannot be defined via 'typedef'
25 | typedef _Bool bool;
| ^~~~
Changelog:
c6fc53f replace custom bool typedef with <stdbool.h>
dadf30c fix format warning in compilation
2fe10ea b43-fwdump: Fix forwarding of arguments to disassembler
Link: https://github.com/openwrt/openwrt/pull/18708
Signed-off-by: Nick Hainke <vincent@systemli.org>
(cherry picked from commit f8da45e25d9efcabbad65f1300de1bca7718b134)
Link: https://github.com/openwrt/openwrt/pull/19065
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | tools/b43-tools/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/b43-tools/Makefile b/tools/b43-tools/Makefile index 19918efde4..d911d7906c 100644 --- a/tools/b43-tools/Makefile +++ b/tools/b43-tools/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=b43-tools -PKG_DATE:=2022-07-05 +PKG_DATE:=2025-05-04 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/mbuesch/b43-tools.git -PKG_SOURCE_VERSION:=2fe10ea6690df9a068cb21cde537236bae784a14 -PKG_MIRROR_HASH:=4f1cde5da35a1e768f6a01d67888549d04512073990769342381af1b2c9e7fd2 +PKG_SOURCE_VERSION:=cc352349153eeda9c164ecd0d06c161a59ec8753 +PKG_MIRROR_HASH:=fcacb8a07ea425b2824a2d810b5a1e70b1b0bf16adcc62d1cdf96ffa75465dcf include $(INCLUDE_DIR)/host-build.mk |