diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sanity.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 31b99d4bc8..cca39c9b52 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -819,6 +819,10 @@ def check_sanity_everybuild(status, d): | |||
819 | with open(checkfile, "w") as f: | 819 | with open(checkfile, "w") as f: |
820 | f.write(tmpdir) | 820 | f.write(tmpdir) |
821 | 821 | ||
822 | # Check vmdk and live can't be built together. | ||
823 | if 'vmdk' in d.getVar('IMAGE_FSTYPES', True) and 'live' in d.getVar('IMAGE_FSTYPES', True): | ||
824 | status.addresult("Error, IMAGE_FSTYPES vmdk and live can't be built together\n") | ||
825 | |||
822 | def check_sanity(sanity_data): | 826 | def check_sanity(sanity_data): |
823 | import subprocess | 827 | import subprocess |
824 | 828 | ||