diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-30 11:30:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-01 11:20:19 +0000 |
commit | b8fa9d36d81fadb817a797a6d41652e1fd3c283a (patch) | |
tree | 2c097856a6f82347c8950c1114d824c16e55088a /meta-yocto/conf | |
parent | 5503a22ad07562c98db90d26b376f1d0e6689e71 (diff) | |
download | poky-b8fa9d36d81fadb817a797a6d41652e1fd3c283a.tar.gz |
poky: Add poky-world-exclude.inc and add qwt-as
In an ideal world we'd test everything in every combination. Reality
is we can't. This file contains things which we don't intend to test
within our world builds.
Add qwt since it has QA warnings which we don't intend to fix and
we don't really want to build this either, its out of scope of our
general qt4 requirements (which is for LSB).
(From meta-yocto rev: 3c36d68765b942e396f3207008b84a2980ae300d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto/conf')
-rw-r--r-- | meta-yocto/conf/distro/include/poky-world-exclude.inc | 6 | ||||
-rw-r--r-- | meta-yocto/conf/distro/poky.conf | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/meta-yocto/conf/distro/include/poky-world-exclude.inc b/meta-yocto/conf/distro/include/poky-world-exclude.inc new file mode 100644 index 0000000000..5194ff1430 --- /dev/null +++ b/meta-yocto/conf/distro/include/poky-world-exclude.inc | |||
@@ -0,0 +1,6 @@ | |||
1 | # | ||
2 | # Things we exlude fromw world testing within the reference distro | ||
3 | # | ||
4 | |||
5 | # qwt from meta-qt4, has poky-lsb QA warnings, qt4 for lsb only | ||
6 | EXCLUDE_FROM_WORLD_pn-qwt = "1" | ||
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf index 76520fbba8..dec3644985 100644 --- a/meta-yocto/conf/distro/poky.conf +++ b/meta-yocto/conf/distro/poky.conf | |||
@@ -99,3 +99,5 @@ WARN_TO_ERROR_QA = "already-stripped compile-host-path install-host-path \ | |||
99 | useless-rpaths" | 99 | useless-rpaths" |
100 | WARN_QA_remove = "${WARN_TO_ERROR_QA}" | 100 | WARN_QA_remove = "${WARN_TO_ERROR_QA}" |
101 | ERROR_QA_append = " ${WARN_TO_ERROR_QA}" | 101 | ERROR_QA_append = " ${WARN_TO_ERROR_QA}" |
102 | |||
103 | require conf/distro/include/poky-world-exclude.inc | ||