diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-06-07 13:02:30 +0930 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2012-07-25 13:35:43 +0100 |
commit | c3adff69210cba4ddf6dd464ef36f1ce7e40dc5b (patch) | |
tree | 7ae60ccbd555f1d626499967cd57b525571830b6 | |
parent | aed21e0027c9e62b42c1b9cd5c85f5157346d349 (diff) | |
download | qemu-arm-c3adff69210cba4ddf6dd464ef36f1ce7e40dc5b.tar.gz |
scripts/update-linux-headers.sh: Pull in KVM headers for ARM
ARM now has KVM headers in the upstream kernel.
XXX: can't commit this upstream until KVM lands, because we'll
fail if the kernel we run against doesn't have the ARM headers.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rwxr-xr-x | scripts/update-linux-headers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 9d2a4bc4b4..7049e8b76b 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -28,7 +28,7 @@ if [ -z "$output" ]; then output="$PWD" fi -for arch in x86 powerpc s390; do +for arch in x86 powerpc s390 arm; do make -C "$linux" INSTALL_HDR_PATH="$tmpdir" SRCARCH=$arch headers_install rm -rf "$output/linux-headers/asm-$arch" |