meta-intel: Fix layer priority

After adding the rsyslog bbappend some changes were not applied
because the meta-phosphor layer also has an rsyslog bbappend at
a higher priority.

This change makes meta-intel depend on meta-phosphor so that
recipes here are treated with a higher priority.

Tested:
rsyslog.conf override from meta-intel is applied.

(From meta-intel rev: 89efcbb081b11050f8532addd4521e17afede3d6)

Change-Id: I6e40e12129118743ad019ff126bcb6c40960cb7c
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/meta-intel/conf/layer.conf b/meta-intel/conf/layer.conf
index b43594d..c753477 100644
--- a/meta-intel/conf/layer.conf
+++ b/meta-intel/conf/layer.conf
@@ -6,6 +6,7 @@
             ${LAYERDIR}/meta-common/recipes-*/*/*.bbappend"
 
 BBFILE_COLLECTIONS += "intel"
-BBFILE_PATTERN_intel = ""
+BBFILE_PATTERN_intel = "^${LAYERDIR}/"
 LAYERVERSION_intel = "1"
 LAYERSERIES_COMPAT_intel = "warrior zeus"
+LAYERDEPENDS_intel = "phosphor-layer"