meta-facebook: console: Fix new yocto update issue
As per latest yocto update, following error reported so fixing it.
URL: 'file://*.conf' has invalid parameters. file:// urls using
globbing are no longer supported. Please place the files in a
directory and reference that instead.
Change-Id: I58a004a2344e9b7aa183d3144495ab0beadcaa72
Signed-off-by: Vijay Khemka <vijaykhemka@fb.com>
diff --git a/recipes-phosphor/console/obmc-console_%.bbappend b/recipes-phosphor/console/obmc-console_%.bbappend
index ab61422..f0a1c7b 100644
--- a/recipes-phosphor/console/obmc-console_%.bbappend
+++ b/recipes-phosphor/console/obmc-console_%.bbappend
@@ -1,7 +1,16 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}/${MACHINE}:"
OBMC_CONSOLE_HOST_TTY = "ttyS2"
-SRC_URI += "file://*.conf"
+SRC_URI_append_tiogapass = " file://server.ttyS2.conf"
+SRC_URI_append_yosemitev2 = " file://server.ttyS0.conf \
+ file://server.ttyS1.conf \
+ file://server.ttyS2.conf \
+ file://server.ttyS3.conf \
+ file://client.2200.conf \
+ file://client.2201.conf \
+ file://client.2202.conf \
+ file://client.2203.conf"
+
SRC_URI_remove = "file://${BPN}.conf"
SYSTEMD_SERVICE_${PN}_remove_yosemitev2 = "obmc-console-ssh.socket"