diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-07-10 14:00:35 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-07-21 07:58:57 +0200 |
| commit | 99c6e970a4a6cfd862c6bb0a363c28538436de13 (patch) | |
| tree | 63f8e40a549f8e7f5fd6629d74aa24d9a3f4d911 /scripts/update-linux-headers.sh | |
| parent | e82989544e38062beeeaad88c175afbeed0400f8 (diff) | |
| download | focaccia-qemu-99c6e970a4a6cfd862c6bb0a363c28538436de13.tar.gz focaccia-qemu-99c6e970a4a6cfd862c6bb0a363c28538436de13.zip | |
linux-headers: Remove the 32-bit arm headers
KVM support for 32-bit arm has been dropped a while ago, so we don't
need these headers in QEMU anymore.
Fixes: 82bf7ae84ce ("target/arm: Remove KVM support for 32-bit Arm hosts")
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20250710120035.169376-1-thuth@redhat.com>
Diffstat (limited to 'scripts/update-linux-headers.sh')
| -rwxr-xr-x | scripts/update-linux-headers.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index b43b8ef75a..717c379f9e 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -156,11 +156,6 @@ EOF cp "$hdrdir/include/asm/unistd_32.h" "$output/linux-headers/asm-s390/" cp "$hdrdir/include/asm/unistd_64.h" "$output/linux-headers/asm-s390/" fi - if [ $arch = arm ]; then - cp "$hdrdir/include/asm/unistd-eabi.h" "$output/linux-headers/asm-arm/" - cp "$hdrdir/include/asm/unistd-oabi.h" "$output/linux-headers/asm-arm/" - cp "$hdrdir/include/asm/unistd-common.h" "$output/linux-headers/asm-arm/" - fi if [ $arch = arm64 ]; then cp "$hdrdir/include/asm/sve_context.h" "$output/linux-headers/asm-arm64/" cp "$hdrdir/include/asm/unistd_64.h" "$output/linux-headers/asm-arm64/" |