diff options
author | 2025-04-04 23:04:35 -0700 | |
---|---|---|
committer | 2025-04-04 23:04:35 -0700 | |
commit | 946661e3bef8efa11ba8079d4ebafe6fc3b0aaad (patch) | |
tree | a90605abb7bb65503a2d3f93a79e19a01aaa5e89 /scripts/link-vmlinux.sh | |
parent | MAINTAINERS: Remove myself from the goodix touchscreen maintainers (diff) | |
parent | Input: goodix_berlin - add support for Berlin-A series (diff) | |
download | wireguard-linux-946661e3bef8efa11ba8079d4ebafe6fc3b0aaad.tar.xz wireguard-linux-946661e3bef8efa11ba8079d4ebafe6fc3b0aaad.zip |
Merge branch 'next' into for-linus
Prepare input updates for 6.15 merge window.
Diffstat (limited to 'scripts/link-vmlinux.sh')
-rwxr-xr-x | scripts/link-vmlinux.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh index d853ddb3b28c..56a077d204cf 100755 --- a/scripts/link-vmlinux.sh +++ b/scripts/link-vmlinux.sh @@ -283,7 +283,11 @@ vmlinux_link vmlinux # fill in BTF IDs if is_enabled CONFIG_DEBUG_INFO_BTF; then info BTFIDS vmlinux - ${RESOLVE_BTFIDS} vmlinux + RESOLVE_BTFIDS_ARGS="" + if is_enabled CONFIG_WERROR; then + RESOLVE_BTFIDS_ARGS=" --fatal_warnings " + fi + ${RESOLVE_BTFIDS} ${RESOLVE_BTFIDS_ARGS} vmlinux fi mksysmap vmlinux System.map |