From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfWb2-0008En-2A for qemu-devel@nongnu.org; Thu, 23 May 2013 10:34:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UfWax-0006rO-U1 for qemu-devel@nongnu.org; Thu, 23 May 2013 10:34:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13843) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfWax-0006rE-Mb for qemu-devel@nongnu.org; Thu, 23 May 2013 10:34:19 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r4NEYJW8007425 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 23 May 2013 10:34:19 -0400 Received: from redhat.com (vpn-202-161.tlv.redhat.com [10.35.202.161]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r4NEYGU5017511 for ; Thu, 23 May 2013 10:34:18 -0400 Date: Thu, 23 May 2013 17:34:41 +0300 From: "Michael S. Tsirkin" Message-ID: <1369319649-23900-2-git-send-email-mst@redhat.com> References: <1369319649-23900-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1369319649-23900-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH 01/10] scripts/update-linux-headers.sh: add virtio List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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