diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-11-13 14:32:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-14 13:39:48 +0000 |
commit | c028dcda06733f6a6b3386279fb6089ab0d468ea (patch) | |
tree | 2a4c80a48d4a8844ad4776d92a4edfae30817897 | |
parent | 0b15220f17a07f498e8d82bcd9e237d462f0ef23 (diff) | |
download | poky-c028dcda06733f6a6b3386279fb6089ab0d468ea.tar.gz |
classes/sanity: validate SDKMACHINE value
If SDKMACHINE is set then check that a configuration file matching it
actually exists, otherwise the user won't know that they've set it
incorrectly.
(From OE-Core rev: 8c984f92af821a4048c93f8e308c5f4a3fa39ca4)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/sanity.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 83378b0573..6807a23152 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -625,6 +625,11 @@ def check_sanity_everybuild(status, d): | |||
625 | if machinevalid: | 625 | if machinevalid: |
626 | status.addresult(check_toolchain(d)) | 626 | status.addresult(check_toolchain(d)) |
627 | 627 | ||
628 | # Check that the SDKMACHINE is valid, if it is set | ||
629 | if d.getVar('SDKMACHINE', True): | ||
630 | if not check_conf_exists("conf/machine-sdk/${SDKMACHINE}.conf", d): | ||
631 | status.addresult('Specified SDKMACHINE value is not valid\n') | ||
632 | |||
628 | check_supported_distro(d) | 633 | check_supported_distro(d) |
629 | 634 | ||
630 | # Check if DISPLAY is set if TEST_IMAGE is set | 635 | # Check if DISPLAY is set if TEST_IMAGE is set |