summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2015-02-16 22:36:32 +0100
committerMichael S. Tsirkin <mst@redhat.com>2015-02-26 13:04:05 +0100
commit05e492b0dbe42232b2ee9edffb016c68e6519a61 (patch)
treeac09d44098cf7f073d947d64c0329aab0c07e40d
parent9b70c1790acacae54d559d38ca69186a85040bb8 (diff)
downloadfocaccia-qemu-05e492b0dbe42232b2ee9edffb016c68e6519a61.tar.gz
focaccia-qemu-05e492b0dbe42232b2ee9edffb016c68e6519a61.zip
update-linux-headers: use standard-headers
Drop the linux-specific virtio headers, use the copy from
standard-headers instead.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rwxr-xr-xscripts/update-linux-headers.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh
index 8926dec57f..5ab391496f 100755
--- a/scripts/update-linux-headers.sh
+++ b/scripts/update-linux-headers.sh
@@ -91,7 +91,7 @@ done
 
 rm -rf "$output/linux-headers/linux"
 mkdir -p "$output/linux-headers/linux"
-for header in kvm.h kvm_para.h vfio.h vhost.h virtio_config.h virtio_ring.h \
+for header in kvm.h kvm_para.h vfio.h vhost.h \
               psci.h; do
     cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux"
 done
@@ -106,6 +106,12 @@ else
     cp "$linux/COPYING" "$output/linux-headers"
 fi
 
+cat <<EOF >$output/linux-headers/linux/virtio_config.h
+#include "standard-headers/linux/virtio_config.h"
+EOF
+cat <<EOF >$output/linux-headers/linux/virtio_ring.h
+#include "standard-headers/linux/virtio_ring.h"
+EOF
 
 cp_virtio "$tmpdir/include/linux/" "$output/include/standard-headers/linux"