obmc-console: Update PACKAGECONFIG for ssh

Enable PACKAGECONFIG to support `obmc-console-ssh` and make sure that it
doens't conflict with concurrent-servers.

Change-Id: I6c2205f827cdc74c32e4ce72ca2ce780a45d71bb
Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
Signed-off-by: Willy Tu <wltu@google.com>
diff --git a/meta-phosphor/recipes-phosphor/console/obmc-console_git.bb b/meta-phosphor/recipes-phosphor/console/obmc-console_git.bb
index f6043ae..e3b265b 100644
--- a/meta-phosphor/recipes-phosphor/console/obmc-console_git.bb
+++ b/meta-phosphor/recipes-phosphor/console/obmc-console_git.bb
@@ -7,9 +7,10 @@
             systemd \
            "
 SRCREV = "955d140e3caafb8a082a094d4fb6ebd2e3d7782a"
-PACKAGECONFIG ??= "udev"
+PACKAGECONFIG ??= "udev ssh"
 PACKAGECONFIG[udev] = "-Dudev=enabled,-Dudev=disabled,udev"
 PACKAGECONFIG[concurrent-servers] = "-Dconcurrent-servers=true,-Dconcurrent-servers=false,"
+PACKAGECONFIG[ssh] = "-Dssh=enabled,-Dssh=disabled"
 PV = "1.0+git${SRCPV}"
 PR = "r1"
 
@@ -18,10 +19,14 @@
 SRC_URI += "file://dropbear.env"
 
 S = "${WORKDIR}/git"
-SYSTEMD_SERVICE:${PN} += "obmc-console-ssh@.service \
-                obmc-console-ssh.socket \
-                obmc-console@.service \
-                "
+SYSTEMD_SERVICE:${PN} += " obmc-console@.service"
+
+# Include ssh service if `ssh` is in PACKAGECONFIG.
+# Only install the ssh socket if we are not enabling
+#   `concurrent-servers` in PACKAGECONFIG.
+SYSTEMD_SERVICE:${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'ssh', 'obmc-console-ssh@.service', '', d)}"
+SSH_SYSTEMD_SOCKET = "${@bb.utils.contains('PACKAGECONFIG', 'ssh', 'obmc-console-ssh.socket', '', d)}"
+SYSTEMD_SERVICE:${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'concurrent-servers', '', '${SSH_SYSTEMD_SOCKET}', d)}"
 
 inherit meson pkgconfig
 inherit obmc-phosphor-discovery-service