From: Peter Maydell Date: Mon, 22 Oct 2012 11:54:39 +0000 (+0100) Subject: update-linux-headers.sh: Handle new kernel uapi/ directories X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~900^2~59^2~1387^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b55f546eefe79cb6e6b15ebb23f352a736bafc39;p=sdk%2Femulator%2Fqemu.git update-linux-headers.sh: Handle new kernel uapi/ directories Recent kernels have moved to keeping the userspace headers in uapi/ subdirectories. This breaks the detection of whether an architecture has KVM support in the kernel because kvm.h has moved in the kernel source tree. Update the check to support both the old and new locations. Signed-off-by: Peter Maydell Signed-off-by: Marcelo Tosatti --- diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 67be2efecd..4c7b566fdf 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -34,7 +34,8 @@ ARCHLIST=$(cd "$linux/arch" && echo *) for arch in $ARCHLIST; do # Discard anything which isn't a KVM-supporting architecture - if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ]; then + if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ] && + ! [ -e "$linux/arch/$arch/include/uapi/asm/kvm.h" ] ; then continue fi