From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43273) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UgcmR-0001kd-HC for qemu-devel@nongnu.org; Sun, 26 May 2013 11:22:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UgcmJ-0005E2-2L for qemu-devel@nongnu.org; Sun, 26 May 2013 11:22:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UgcmI-0005Dv-RU for qemu-devel@nongnu.org; Sun, 26 May 2013 11:22:35 -0400 Date: Sun, 26 May 2013 18:22:55 +0300 From: "Michael S. Tsirkin" Message-ID: <1369581694-1655-3-git-send-email-mst@redhat.com> References: <1369581694-1655-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1369581694-1655-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH v2 02/11] scripts/update-linux-headers.sh: add virtio List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Peter Maydell Add virtio headers to make it easy to keep things in sync. Signed-off-by: Michael S. Tsirkin --- scripts/update-linux-headers.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 120a694..334fba9 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -61,7 +61,22 @@ 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; do +for header in \ + kvm.h \ + kvm_para.h \ + vfio.h \ + vhost.h \ + virtio_9p.h \ + virtio_balloon.h \ + virtio_blk.h \ + virtio_config.h \ + virtio_console.h \ + virtio_ids.h \ + virtio_net.h \ + virtio_pci.h \ + virtio_ring.h \ + virtio_rng.h \ + ; do cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" done rm -rf "$output/linux-headers/asm-generic" -- MST