diff options
author | Armin Kuster <akuster808@gmail.com> | 2018-03-07 07:15:59 -0800 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-03-12 09:59:34 -0700 |
commit | 05dc31e5461e6a8791bdc0f93ec56d07e08d19e9 (patch) | |
tree | 20f5be01707812b96dbaaf0e7037f902218eaf46 /meta-gnome/conf | |
parent | cf50e1f47d9d4329406c7c8cb8c1cbe9e310367f (diff) | |
download | meta-openembedded-05dc31e5461e6a8791bdc0f93ec56d07e08d19e9.tar.gz |
santiy-meta-gnome: add class for bbappend files checking
Idea taken from meta-virt
Add a new class, sanity-meta-gnome.bbclass, to check for whether necessary
settings are available for bbappend files in this layer to be effective,
and warn users if not.
In addition, a variable SKIP_SANITY_BBAPPEND_CHECK is added to enable users
to explicitly skip the checking to avoid unwanted warnings.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-gnome/conf')
-rw-r--r-- | meta-gnome/conf/layer.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-gnome/conf/layer.conf b/meta-gnome/conf/layer.conf index fb89c147c3..37215a7708 100644 --- a/meta-gnome/conf/layer.conf +++ b/meta-gnome/conf/layer.conf | |||
@@ -13,3 +13,7 @@ BBFILE_PRIORITY_gnome-layer = "7" | |||
13 | LAYERVERSION_gnome-layer = "1" | 13 | LAYERVERSION_gnome-layer = "1" |
14 | 14 | ||
15 | LAYERDEPENDS_gnome-layer = "core openembedded-layer networking-layer" | 15 | LAYERDEPENDS_gnome-layer = "core openembedded-layer networking-layer" |
16 | |||
17 | # Sanity check for meta-gnome layer. | ||
18 | # Setting SKIP_META_GNOME_SANITY_CHECK to "1" would skip the bbappend files check. | ||
19 | INHERIT += "sanity-meta-gnome" | ||