From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50005) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WnR1M-0001Yr-KD for qemu-devel@nongnu.org; Thu, 22 May 2014 07:18:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WnR1G-00056Y-Gx for qemu-devel@nongnu.org; Thu, 22 May 2014 07:18:48 -0400 Received: from mail-pa0-f48.google.com ([209.85.220.48]:44244) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WnR1G-00056N-CD for qemu-devel@nongnu.org; Thu, 22 May 2014 07:18:42 -0400 Received: by mail-pa0-f48.google.com with SMTP id rd3so2416504pab.35 for ; Thu, 22 May 2014 04:18:41 -0700 (PDT) From: Pranavkumar Sawargaonkar Date: Thu, 22 May 2014 16:47:59 +0530 Message-Id: <1400757486-2860-2-git-send-email-pranavkumar@linaro.org> In-Reply-To: <1400757486-2860-1-git-send-email-pranavkumar@linaro.org> References: <1400757486-2860-1-git-send-email-pranavkumar@linaro.org> Subject: [Qemu-devel] [PATCH V6 1/8] update-linux-headers.sh: Add psci.h to linux header sync-up script List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Anup Patel , patches@apm.com, robherring2@gmail.com, kvmarm@lists.cs.columbia.edu, christoffer.dall@linaro.org, Pranavkumar Sawargaonkar We will be using linux/psci.h for KVM ARM/ARM64 hence add it to linux header sync-up script. Signed-off-by: Pranavkumar Sawargaonkar Signed-off-by: Anup Patel --- scripts/update-linux-headers.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 120a694..35d1960 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -61,7 +61,8 @@ 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 psci.h vfio.h vhost.h virtio_config.h \ +virtio_ring.h; do cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" done rm -rf "$output/linux-headers/asm-generic" -- 1.7.9.5