aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2024-05-27 08:01:26 +0200
committerThomas Huth <thuth@redhat.com>2024-05-29 12:41:56 +0200
commitbde26d90ae9f7551cac90e117fc7216c807a3bfe (patch)
tree90fe4d8991aa6c9854a1cf2d27d6486a8609115d /scripts
parent3efc75ad9d9317e5709861bbebb2c29390f8e7a2 (diff)
downloadqemu-bde26d90ae9f7551cac90e117fc7216c807a3bfe.zip
qemu-bde26d90ae9f7551cac90e117fc7216c807a3bfe.tar.gz
qemu-bde26d90ae9f7551cac90e117fc7216c807a3bfe.tar.bz2
scripts/update-linux-headers.sh: Fix the path of setup_data.h
When running the update-linx-headers.sh script, it currently fails with: scripts/update-linux-headers.sh: line 73: .../qemu/standard-headers/asm-x86/setup_data.h: No such file or directory The "include" folder is obviously missing here - no clue how this could have worked before? Fixes: 66210a1a30 ("scripts/update-linux-headers: Add setup_data.h to import list") Message-ID: <20240527060126.12578-1-thuth@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-linux-headers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh
index fbf7e11..23afe8c 100755
--- a/scripts/update-linux-headers.sh
+++ b/scripts/update-linux-headers.sh
@@ -159,7 +159,7 @@ for arch in $ARCHLIST; do
cp_portable "$hdrdir/bootparam.h" \
"$output/include/standard-headers/asm-$arch"
cp_portable "$hdrdir/include/asm/setup_data.h" \
- "$output/standard-headers/asm-x86"
+ "$output/include/standard-headers/asm-x86"
fi
if [ $arch = riscv ]; then
cp "$hdrdir/include/asm/ptrace.h" "$output/linux-headers/asm-riscv/"