From patchwork Tue Dec 18 11:13:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bharat Bhushan X-Patchwork-Id: 207078 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1FED32C0087 for ; Tue, 18 Dec 2012 22:31:09 +1100 (EST) Received: from localhost ([::1]:56452 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TkvO7-0003gR-9O for incoming@patchwork.ozlabs.org; Tue, 18 Dec 2012 06:31:07 -0500 Received: from eggs.gnu.org ([208.118.235.92]:57750) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TkvNv-0003g9-CS for qemu-devel@nongnu.org; Tue, 18 Dec 2012 06:30:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TkvNq-0004vO-Kq for qemu-devel@nongnu.org; Tue, 18 Dec 2012 06:30:55 -0500 Received: from am1ehsobe005.messaging.microsoft.com ([213.199.154.208]:9452 helo=am1outboundpool.messaging.microsoft.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TkvHm-0003E8-1O; Tue, 18 Dec 2012 06:24:34 -0500 Received: from mail40-am1-R.bigfish.com (10.3.201.244) by AM1EHSOBE001.bigfish.com (10.3.204.21) with Microsoft SMTP Server id 14.1.225.23; Tue, 18 Dec 2012 11:24:32 +0000 Received: from mail40-am1 (localhost [127.0.0.1]) by mail40-am1-R.bigfish.com (Postfix) with ESMTP id 1C72A48021C; Tue, 18 Dec 2012 11:24:32 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: 3 X-BigFish: VS3(zzzz1de0h1202h1e76h1d1ah1d2ah1082kzz8275bhz2dh2a8h668h839hd24he5bhf0ah107ah1288h12a5h12a9h12bdh12e5h137ah139eh13b6h1441h1504h1537h162dh1631h1758h1155h) Received: from mail40-am1 (localhost.localdomain [127.0.0.1]) by mail40-am1 (MessageSwitch) id 1355829869577677_31252; Tue, 18 Dec 2012 11:24:29 +0000 (UTC) Received: from AM1EHSMHS008.bigfish.com (unknown [10.3.201.251]) by mail40-am1.bigfish.com (Postfix) with ESMTP id 8A4134C0064; Tue, 18 Dec 2012 11:24:29 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by AM1EHSMHS008.bigfish.com (10.3.207.108) with Microsoft SMTP Server (TLS) id 14.1.225.23; Tue, 18 Dec 2012 11:24:29 +0000 Received: from az84smr01.freescale.net (10.64.34.197) by 039-SN1MMR1-004.039d.mgd.msft.net (10.84.1.14) with Microsoft SMTP Server (TLS) id 14.2.318.3; Tue, 18 Dec 2012 11:24:27 +0000 Received: from freescale.com ([10.232.15.72]) by az84smr01.freescale.net (8.14.3/8.14.0) with SMTP id qBIBOJpr028546; Tue, 18 Dec 2012 04:24:23 -0700 Received: by freescale.com (sSMTP sendmail emulation); Tue, 18 Dec 2012 16:44:01 +0530 From: Bharat Bhushan To: , , , , , , Date: Tue, 18 Dec 2012 16:43:58 +0530 Message-ID: <1355829238-32409-1-git-send-email-bharat.bhushan@freescale.com> X-Mailer: git-send-email 1.7.0.4 MIME-Version: 1.0 X-OriginatorOrg: freescale.com X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 X-Received-From: 213.199.154.208 Cc: Bharat Bhushan Subject: [Qemu-devel] [PATCH] powerpc: linux header sync script includes epapr_hcalls.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 epapr_hcalls.h is now referenced by kvm_para.h. so this is needed for QEMU to get compiled on powerpc. Signed-off-by: Bharat Bhushan --- This patch is after all the discussion we had on patch with subject "Added uapi directory in linux-header" and the mentioned patch is no more needed. scripts/update-linux-headers.sh | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 4c7b566..120a694 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -54,6 +54,9 @@ for arch in $ARCHLIST; do if [ $arch = x86 ]; then cp "$tmpdir/include/asm/hyperv.h" "$output/linux-headers/asm-x86" fi + if [ $arch = powerpc ]; then + cp "$tmpdir/include/asm/epapr_hcalls.h" "$output/linux-headers/asm-powerpc/" + fi done rm -rf "$output/linux-headers/linux"