From patchwork Thu Feb 12 13:08:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jens Freimann X-Patchwork-Id: 439177 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 0A6461400EA for ; Fri, 13 Feb 2015 00:09:58 +1100 (AEDT) Received: from localhost ([::1]:50118 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLtWl-0002TX-TQ for incoming@patchwork.ozlabs.org; Thu, 12 Feb 2015 08:09:55 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49631) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLtW6-00019o-HQ for qemu-devel@nongnu.org; Thu, 12 Feb 2015 08:09:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLtVy-0002dH-Ey for qemu-devel@nongnu.org; Thu, 12 Feb 2015 08:09:14 -0500 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:45024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLtVy-0002bU-5s for qemu-devel@nongnu.org; Thu, 12 Feb 2015 08:09:06 -0500 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 12 Feb 2015 13:09:03 -0000 Received: from d06dlp02.portsmouth.uk.ibm.com (9.149.20.14) by e06smtp17.uk.ibm.com (192.168.101.147) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 12 Feb 2015 13:09:00 -0000 Received: from b06cxnps3075.portsmouth.uk.ibm.com (d06relay10.portsmouth.uk.ibm.com [9.149.109.195]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id BEFB82190019 for ; Thu, 12 Feb 2015 13:08:55 +0000 (GMT) Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by b06cxnps3075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t1CD90HD12255572 for ; Thu, 12 Feb 2015 13:09:00 GMT Received: from d06av07.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t1CD905h000974 for ; Thu, 12 Feb 2015 08:09:00 -0500 Received: from tuxmaker.boeblingen.de.ibm.com (tuxmaker.boeblingen.de.ibm.com [9.152.85.9]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t1CD90dv000971; Thu, 12 Feb 2015 08:09:00 -0500 Received: by tuxmaker.boeblingen.de.ibm.com (Postfix, from userid 1122) id F11A3122422D; Thu, 12 Feb 2015 14:08:59 +0100 (CET) From: Jens Freimann To: "Michael S. Tsirkin" , Paolo Bonzini Date: Thu, 12 Feb 2015 14:08:52 +0100 Message-Id: <1423746533-45739-2-git-send-email-jfrei@linux.vnet.ibm.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1423746533-45739-1-git-send-email-jfrei@linux.vnet.ibm.com> References: <1423746533-45739-1-git-send-email-jfrei@linux.vnet.ibm.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15021213-0029-0000-0000-00000356D602 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 195.75.94.113 Cc: Jens Freimann , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 1/2] update-linux-headers.sh: also grap virtio_types.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Jens Freimann --- scripts/update-linux-headers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index c8e026d..0b2e117 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -62,7 +62,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 \ - psci.h; do + psci.h virtio_types.h; do cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" done rm -rf "$output/linux-headers/asm-generic"