aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEric Auger <eric.auger@redhat.com>2023-10-09 11:09:03 +0200
committerCédric Le Goater <clg@redhat.com>2023-10-18 10:10:49 +0200
commit8cba58b57865140b16e38b6c5a273db81f827860 (patch)
tree2ddd7c0a0b63dc5f4510a32efcc6365df106a028 /scripts
parentec6f9f135d5e5596ab0258da2ddd048f1fd8c359 (diff)
downloadqemu-8cba58b57865140b16e38b6c5a273db81f827860.zip
qemu-8cba58b57865140b16e38b6c5a273db81f827860.tar.gz
qemu-8cba58b57865140b16e38b6c5a273db81f827860.tar.bz2
scripts/update-linux-headers: Add iommufd.h
Update the script to import iommufd.h Signed-off-by: Eric Auger <eric.auger@redhat.com> Signed-off-by: Yi Liu <yi.l.liu@intel.com> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-linux-headers.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh
index 35a64bb..34295c0 100755
--- a/scripts/update-linux-headers.sh
+++ b/scripts/update-linux-headers.sh
@@ -161,7 +161,8 @@ done
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; do
+ psci.h psp-sev.h userfaultfd.h memfd.h mman.h nvme_ioctl.h \
+ vduse.h iommufd.h; do
cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux"
done