summaryrefslogtreecommitdiffstats
path: root/meta/classes/sanity.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r--meta/classes/sanity.bbclass14
1 files changed, 9 insertions, 5 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index c2f57a3837..67a5f52de3 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -95,11 +95,15 @@ def check_sanity(e):
95 messages = messages + "qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH" 95 messages = messages + "qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH"
96 96
97 if data.getVar('TARGET_ARCH', e.data, True) == "arm": 97 if data.getVar('TARGET_ARCH', e.data, True) == "arm":
98 if os.path.exists("/proc/sys/vm/mmap_min_addr"): 98 # This path is no longer user-readable in modern (very recent) Linux
99 f = file("/proc/sys/vm/mmap_min_addr", "r") 99 try:
100 if (f.read().strip() != "0"): 100 if os.path.exists("/proc/sys/vm/mmap_min_addr"):
101 messages = messages + "/proc/sys/vm/mmap_min_addr is not 0. This will cause problems with qemu so please fix the value (as root).\n\nTo fix this in later reboots, set vm.mmap_min_addr = 0 in /etc/sysctl.conf.\n" 101 f = file("/proc/sys/vm/mmap_min_addr", "r")
102 f.close() 102 if (f.read().strip() != "0"):
103 messages = messages + "/proc/sys/vm/mmap_min_addr is not 0. This will cause problems with qemu so please fix the value (as root).\n\nTo fix this in later reboots, set vm.mmap_min_addr = 0 in /etc/sysctl.conf.\n"
104 f.close()
105 except:
106 pass
103 107
104 for util in required_utilities.split(): 108 for util in required_utilities.split():
105 if not check_app_exists( util, e.data ): 109 if not check_app_exists( util, e.data ):