diff options
author | Michael Roth <michael.roth@amd.com> | 2024-02-21 10:51:38 -0600 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-04-23 17:35:25 +0200 |
commit | b40b8eb609d3549ac14aab43849b20f5cba951c9 (patch) | |
tree | 42c7612f5931c067e0153a338fa87e1baa8372dd /scripts | |
parent | 66210a1a30f2384bb59f9dad8d769dba56dd30f1 (diff) | |
download | qemu-b40b8eb609d3549ac14aab43849b20f5cba951c9.zip qemu-b40b8eb609d3549ac14aab43849b20f5cba951c9.tar.gz qemu-b40b8eb609d3549ac14aab43849b20f5cba951c9.tar.bz2 |
scripts/update-linux-headers: Add bits.h to file imports
Signed-off-by: Michael Roth <michael.roth@amd.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update-linux-headers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index d48856f..5f20434 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -169,7 +169,7 @@ rm -rf "$output/linux-headers/linux" mkdir -p "$output/linux-headers/linux" for header in const.h stddef.h kvm.h vfio.h vfio_ccw.h vfio_zdev.h vhost.h \ psci.h psp-sev.h userfaultfd.h memfd.h mman.h nvme_ioctl.h \ - vduse.h iommufd.h; do + vduse.h iommufd.h bits.h; do cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" done |