summaryrefslogtreecommitdiff
path: root/meta-evb
diff options
context:
space:
mode:
authorTim Lee <timlee660101@gmail.com>2023-03-03 12:31:07 +0300
committerTim Lee <timlee660101@gmail.com>2023-03-03 12:31:07 +0300
commit0823bd2e6b84b30cd1ee537205df1edbe833cb46 (patch)
tree85f35df444ff5b10d928e104cd269a4373a8be3f /meta-evb
parentae3048554faba38f5df5c1b17df741f90ff0eeab (diff)
downloadopenbmc-0823bd2e6b84b30cd1ee537205df1edbe833cb46.tar.xz
meta-evb: fix build warning for this layer
There are some build warning message as below: WARNING: No bb files in default matched BBFILE_PATTERN_evb '' WARNING: No bb files in default matched BBFILE_PATTERN_evb-nuvoton '' Due to there is no any bb files in meta-evb and meta-evb-nuvoton layer. Add this BBFILE_PATTERN_IGNORE_EMPTY to allow those layers has no bb files then clear this kind of WARNING messages. Signed-off-by: Tim Lee <timlee660101@gmail.com> Change-Id: Ie845a2001b4e903975ab646ebe72aabd4f73e700
Diffstat (limited to 'meta-evb')
-rw-r--r--meta-evb/conf/layer.conf1
-rw-r--r--meta-evb/meta-evb-nuvoton/conf/layer.conf1
2 files changed, 2 insertions, 0 deletions
diff --git a/meta-evb/conf/layer.conf b/meta-evb/conf/layer.conf
index aa6b56fb09..445533f195 100644
--- a/meta-evb/conf/layer.conf
+++ b/meta-evb/conf/layer.conf
@@ -3,4 +3,5 @@ BBPATH .= ":${LAYERDIR}"
BBFILE_COLLECTIONS += "evb"
BBFILE_PATTERN_evb = ""
+BBFILE_PATTERN_IGNORE_EMPTY_evb = "1"
LAYERSERIES_COMPAT_evb = "langdale mickledore"
diff --git a/meta-evb/meta-evb-nuvoton/conf/layer.conf b/meta-evb/meta-evb-nuvoton/conf/layer.conf
index f19d857722..420306cdd4 100644
--- a/meta-evb/meta-evb-nuvoton/conf/layer.conf
+++ b/meta-evb/meta-evb-nuvoton/conf/layer.conf
@@ -3,4 +3,5 @@ BBPATH .= ":${LAYERDIR}"
BBFILE_COLLECTIONS += "evb-nuvoton"
BBFILE_PATTERN_evb-nuvoton = ""
+BBFILE_PATTERN_IGNORE_EMPTY_evb-nuvoton = "1"
LAYERSERIES_COMPAT_evb-nuvoton = "langdale mickledore"