From: Joshua Lock Date: Fri, 1 Oct 2010 14:09:47 +0000 (+0100) Subject: poky-qemu-internal: only check mmap_min_addr when running arm images X-Git-Tag: 2011-1~4376 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b9369741db688d117c94d2b3c4827a317756dc0c;p=openembedded-core.git poky-qemu-internal: only check mmap_min_addr when running arm images No need to force users to poke /proc/sys when they don't need to. Signed-off-by: Joshua Lock --- diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index cb5d28b904..f13b95def2 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -150,14 +150,14 @@ if [ ! -f "$ZIMAGE" ]; then return fi -if [ -e /proc/sys/vm/mmap_min_addr ]; then - if [ `cat /proc/sys/vm/mmap_min_addr` != "0" ]; then - echo "Error, please set /proc/sys/vm/mmap_min_addr to 0 since otherwise it can cause problems with QEMU" - return +if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarmv7" ]; then + if [ -e /proc/sys/vm/mmap_min_addr ]; then + if [ `cat /proc/sys/vm/mmap_min_addr` != "0" ]; then + echo "Error, please set /proc/sys/vm/mmap_min_addr to 0 since otherwise it can cause problems with QEMU" + return + fi fi -fi -if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarmv7" ]; then QEMU=qemu-system-arm MACHINE_SUBTYPE=versatilepb QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS"