Merge branch 'org.openembedded.dev' of git://git.openembedded.net/openembedded into...
[vuplus_openembedded] / classes / sanity.bbclass
index 44c74a0..29624c3 100644 (file)
@@ -98,6 +98,12 @@ def check_sanity(e):
                        if not check_app_exists("qemu-arm", e.data):
                                messages = messages + "qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH"
 
+               if os.path.exists("/proc/sys/vm/mmap_min_addr"):
+                       f = file("/proc/sys/vm/mmap_min_addr", "r")
+                       if (f.read().strip() != "0"):
+                               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"
+                       f.close()
+
        for util in required_utilities.split():
                if not check_app_exists( util, e.data ):
                        missing = missing + "%s," % util
@@ -106,6 +112,12 @@ def check_sanity(e):
                missing = missing.rstrip(',')
                messages = messages + "Please install following missing utilities: %s\n" % missing
 
+       try:
+           if os.path.basename(os.readlink('/bin/sh')) == 'dash':
+                   messages = messages + "Using dash as /bin/sh causes various subtle build problems, please use bash instead.\n"
+       except:
+               pass
+
        omask = os.umask(022)
        if omask & 0755:
                messages = messages + "Please use a umask which allows a+rx and u+rwx\n"
@@ -125,6 +137,8 @@ def check_sanity(e):
                if (f.read().strip() != tmpdir):
                        messages = messages + "Error, TMPDIR has changed location. You need to either move it back to %s or rebuild\n" % tmpdir
        else:
+               import bb
+               bb.mkdirhier(tmpdir)
                f = file(checkfile, "w")
                f.write(tmpdir)
        f.close()
@@ -132,7 +146,7 @@ def check_sanity(e):
        #
        # Check the 'ABI' of TMPDIR
        #
-       current_abi = data.getVar('SANITY_ABI', e.data, True)
+       current_abi = data.getVar('OELAYOUT_ABI', e.data, True)
        abifile = data.getVar('SANITY_ABIFILE', e.data, True)
        if os.path.exists(abifile):
                f = file(abifile, "r")
@@ -148,6 +162,32 @@ def check_sanity(e):
                f.write(current_abi)
        f.close()
 
+       #
+       # Check the Distro PR value didn't change
+       #
+       distro_pr = data.getVar('DISTRO_PR', e.data, True)
+       prfile = data.getVar('SANITY_PRFILE', e.data, True)
+       if os.path.exists(prfile):
+               f = file(prfile, "r")
+               pr = f.read().strip()
+               if (pr != distro_pr):
+                       # Code to convert from one ABI to another could go here if possible.
+                       messages = messages + "Error, DISTRO_PR has changed (%s to %s) which means all packages need to rebuild. Please remove your TMPDIR so this can happen. For autobuilder setups you can avoid this by using a TMPDIR that include DISTRO_PR in the path.\n" % (pr, distro_pr)
+       else:
+               f = file(prfile, "w")
+               f.write(distro_pr)
+       f.close()
+
+
+       #
+       # Check there aren't duplicates in PACKAGE_ARCHS
+       #
+       archs = data.getVar('PACKAGE_ARCHS', e.data, True).split()
+       for arch in archs:
+               if archs.count(arch) != 1:
+                       messages = messages + "Error, Your PACKAGE_ARCHS field contains duplicates. Perhaps you set EXTRA_PACKAGE_ARCHS twice accidently through some tune file?\n"
+                       break
+
        if messages != "":
                raise_sanity_error(messages)