summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-05-21 11:38:09 +0100
committerJoshua Lock <josh@linux.intel.com>2010-05-28 15:32:41 +0100
commit138df217efe850528f88d340acf864c38780c2b0 (patch)
tree5bc494c9d1962a29f70de81fa9e0c823d1abab7f /scripts
parent32a85c157002874af88a1cd324e1e466bb1df9b6 (diff)
downloadpoky-138df217efe850528f88d340acf864c38780c2b0.tar.gz
Drop vm_mmap_min_addr checks from scripts and sanity class
QEMU 0.12.x is relocatable so we no longer need these tests, which is good because it doesn't work reliably with modern kernels. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-qemu-internal7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal
index 738bf53fc8..7dd52371b6 100755
--- a/scripts/poky-qemu-internal
+++ b/scripts/poky-qemu-internal
@@ -79,13 +79,6 @@ if [ ! -f "$ZIMAGE" ]; then
79 return 79 return
80fi 80fi
81 81
82if [ -e /proc/sys/vm/mmap_min_addr ]; then
83 if [ `cat /proc/sys/vm/mmap_min_addr` != "0" ]; then
84 echo "Error, please set /proc/sys/vm/mmap_min_addr to 0 since otherwise it can cause problems with QEMU"
85 return
86 fi
87fi
88
89if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarmv7" ]; then 82if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarmv7" ]; then
90 QEMU=qemu-system-arm 83 QEMU=qemu-system-arm
91 if [ "$TYPE" = "ext3" ]; then 84 if [ "$TYPE" = "ext3" ]; then