summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/sanity.bbclass10
1 files changed, 6 insertions, 4 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 433313b54a..1b272190e7 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -170,10 +170,12 @@ def check_sanity(e):
170 # This path is no longer user-readable in modern (very recent) Linux 170 # This path is no longer user-readable in modern (very recent) Linux
171 try: 171 try:
172 if os.path.exists("/proc/sys/vm/mmap_min_addr"): 172 if os.path.exists("/proc/sys/vm/mmap_min_addr"):
173 f = file("/proc/sys/vm/mmap_min_addr", "r") 173 f = open("/proc/sys/vm/mmap_min_addr", "r")
174 if (f.read().strip() != "0"): 174 try:
175 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" 175 if (int(f.read().strip()) < 65536):
176 f.close() 176 messages = messages + "/proc/sys/vm/mmap_min_addr is not >= 65536. 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 = 65536 in /etc/sysctl.conf.\n"
177 finally:
178 f.close()
177 except: 179 except:
178 pass 180 pass
179 181