diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2011-08-02 13:28:28 -0500 |
---|---|---|
committer | Tom Zanussi <tom.zanussi@intel.com> | 2011-08-02 17:28:36 -0500 |
commit | 724b13a74e068b7cd018cd8b2e18c2a762881d1d (patch) | |
tree | a64868b54da76212f7057b25f050210c163c3f0c | |
parent | 3be9957211e54669825d1d55bb73c68d3f3354d0 (diff) | |
download | meta-intel-724b13a74e068b7cd018cd8b2e18c2a762881d1d.tar.gz |
meta-crownbay: fix BBFILES in crownbay layer.conf
The BBFILES append in crownbay's layer.conf is too broad and causes
the wrong init-install.sh to be picked up, causing a bad grub install.
Narrow down the BBFILES to include only what is actually needed.
Fixes [YOCTO #1257].
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
-rw-r--r-- | meta-crownbay/conf/layer.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-crownbay/conf/layer.conf b/meta-crownbay/conf/layer.conf index 9c3794b1..9b717009 100644 --- a/meta-crownbay/conf/layer.conf +++ b/meta-crownbay/conf/layer.conf | |||
@@ -4,8 +4,8 @@ BBPATH := "${BBPATH}:${LAYERDIR}" | |||
4 | # We have a recipes directory, add to BBFILES | 4 | # We have a recipes directory, add to BBFILES |
5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ | 5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ |
6 | ${LAYERDIR}/recipes-*/*/*.bbappend \ | 6 | ${LAYERDIR}/recipes-*/*/*.bbappend \ |
7 | ${LAYERDIR}/../common/recipes-*/*/*.bb \ | 7 | ${LAYERDIR}/../common/recipes-graphics/*/*.bb \ |
8 | ${LAYERDIR}/../common/recipes-*/*/*.bbappend" | 8 | ${LAYERDIR}/../common/recipes-graphics/*/*.bbappend" |
9 | 9 | ||
10 | BBFILE_COLLECTIONS += "crownbay" | 10 | BBFILE_COLLECTIONS += "crownbay" |
11 | BBFILE_PATTERN_crownbay := "^${LAYERDIR}/" | 11 | BBFILE_PATTERN_crownbay := "^${LAYERDIR}/" |