From patchwork Mon Feb 16 21:36:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 440379 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 5D6E51401AB for ; Tue, 17 Feb 2015 08:45:10 +1100 (AEDT) Received: from localhost ([::1]:42641 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNTTY-00052d-Hs for incoming@patchwork.ozlabs.org; Mon, 16 Feb 2015 16:45:08 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49352) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNTLg-0007RZ-3k for qemu-devel@nongnu.org; Mon, 16 Feb 2015 16:37:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YNTLa-0005JQ-Ma for qemu-devel@nongnu.org; Mon, 16 Feb 2015 16:37:00 -0500 Received: from mail.kernel.org ([198.145.29.136]:48227) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNTLa-0005J3-HV for qemu-devel@nongnu.org; Mon, 16 Feb 2015 16:36:54 -0500 Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 8A02C20211; Mon, 16 Feb 2015 21:36:53 +0000 (UTC) Received: from redhat.com (unknown [109.66.37.54]) (using TLSv1.2 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1FC54201E4; Mon, 16 Feb 2015 21:36:50 +0000 (UTC) Date: Mon, 16 Feb 2015 22:36:48 +0100 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org Message-ID: <1424122283-12521-16-git-send-email-mst@redhat.com> References: <1424122283-12521-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1424122283-12521-1-git-send-email-mst@redhat.com> X-Mailer: git-send-email 2.0.0.545.gd9cabeb X-Mutt-Fcc: =sent X-Virus-Scanned: ClamAV using ClamSMTP X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 198.145.29.136 Cc: Peter Maydell , Thomas Huth , Alexander Graf , Stefan Hajnoczi , Cornelia Huck , "Chen, Tiejun" Subject: [Qemu-devel] [PATCH v3 15/17] scripts: add arch specific standard-headers 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 Copy arch specific virtio headers. ATM this applies to s390 only. Signed-off-by: Michael S. Tsirkin --- scripts/update-linux-headers.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 5ab3914..9680e27 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -87,6 +87,8 @@ for arch in $ARCHLIST; do if [ $arch = powerpc ]; then cp "$tmpdir/include/asm/epapr_hcalls.h" "$output/linux-headers/asm-powerpc/" fi + + cp_virtio "$tmpdir/include/asm" "$output/include/standard-headers/asm-$arch" done rm -rf "$output/linux-headers/linux"