meta-quanta: conf bugfix: layer

Fix the quanta layer to be named "quanta-layer" to conform to
expectations.  Also add missing boilerplate code to add recipes from
this layer.  There are currently no recipes in this layer outside of
within a machine specification, but the change will prevent future bugs.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I44763d13aa2576ef379a5e0f5c04c5983d9cb0fb
diff --git a/conf/layer.conf b/conf/layer.conf
index fb4c083..6bc6492 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,9 +1,13 @@
 # We have a conf and classes directory, add to BBPATH
 BBPATH .= ":${LAYERDIR}"
 
-BBFILE_COLLECTIONS += "quanta"
-BBFILE_PATTERN_quanta := "^${LAYERDIR}/"
+# We have recipes-* directories, add to BBFILES
+BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
+            ${LAYERDIR}/recipes-*/*/*.bbappend"
+
+BBFILE_COLLECTIONS += "quanta-layer"
+BBFILE_PATTERN_quanta-layer := "^${LAYERDIR}/"
+LAYERSERIES_COMPAT_quanta-layer = "thud warrior"
 
 # Provide a variable that points the base of the quanta layer.
 QUANTABASE = '${@os.path.normpath("${LAYERDIR}/")}'
-LAYERSERIES_COMPAT_quanta-layer = "thud warrior"