diff options
| -rw-r--r-- | meta/classes/sanity.bbclass | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index bae010d864..d79db8f800 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
| @@ -246,6 +246,8 @@ def check_connectivity(d): | |||
| 246 | return retval | 246 | return retval |
| 247 | 247 | ||
| 248 | def check_supported_distro(sanity_data): | 248 | def check_supported_distro(sanity_data): |
| 249 | from fnmatch import fnmatch | ||
| 250 | |||
| 249 | tested_distros = sanity_data.getVar('SANITY_TESTED_DISTROS', True) | 251 | tested_distros = sanity_data.getVar('SANITY_TESTED_DISTROS', True) |
| 250 | if not tested_distros: | 252 | if not tested_distros: |
| 251 | return | 253 | return |
| @@ -255,12 +257,15 @@ def check_supported_distro(sanity_data): | |||
| 255 | except Exception: | 257 | except Exception: |
| 256 | distro = None | 258 | distro = None |
| 257 | 259 | ||
| 258 | if distro: | 260 | if not distro: |
| 259 | if distro not in [x.strip() for x in tested_distros.split('\\n')]: | ||
| 260 | bb.warn('Host distribution "%s" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.' % distro) | ||
| 261 | else: | ||
| 262 | bb.warn('Host distribution could not be determined; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.') | 261 | bb.warn('Host distribution could not be determined; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.') |
| 263 | 262 | ||
| 263 | for supported in [x.strip() for x in tested_distros.split('\\n')]: | ||
| 264 | if fnmatch(distro, supported): | ||
| 265 | return | ||
| 266 | |||
| 267 | bb.warn('Host distribution "%s" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.' % distro) | ||
| 268 | |||
| 264 | # Checks we should only make if MACHINE is set correctly | 269 | # Checks we should only make if MACHINE is set correctly |
| 265 | def check_sanity_validmachine(sanity_data): | 270 | def check_sanity_validmachine(sanity_data): |
| 266 | messages = "" | 271 | messages = "" |
