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.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 2855941a7b..6ad620b0a4 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -835,6 +835,10 @@ def check_sanity_everybuild(status, d):
835 if 'vdi' in d.getVar('IMAGE_FSTYPES', True) and 'live' in d.getVar('IMAGE_FSTYPES', True): 835 if 'vdi' in d.getVar('IMAGE_FSTYPES', True) and 'live' in d.getVar('IMAGE_FSTYPES', True):
836 status.addresult("Error, IMAGE_FSTYPES vdi and live can't be built together\n") 836 status.addresult("Error, IMAGE_FSTYPES vdi and live can't be built together\n")
837 837
838 # Check qcow2 and live can't be built together.
839 if 'qcow2' in d.getVar('IMAGE_FSTYPES', True) and 'live' in d.getVar('IMAGE_FSTYPES', True):
840 status.addresult("Error, IMAGE_FSTYPES qcow2 and live can't be built together\n")
841
838 # Check /bin/sh links to dash or bash 842 # Check /bin/sh links to dash or bash
839 real_sh = os.path.realpath('/bin/sh') 843 real_sh = os.path.realpath('/bin/sh')
840 if not real_sh.endswith('/dash') and not real_sh.endswith('/bash'): 844 if not real_sh.endswith('/dash') and not real_sh.endswith('/bash'):