mboxd: Only include check_pnor_format if ubi feature is enabled

The check_pnor_format checks if the PNOR is formatted as UBI,
so it should only be added if the UBI feature is enabled.

(From meta-ibm rev: 091f26661b09c9d0a6f6b632b40cc8a84eac25c3)

Change-Id: Ief252652cd347a0bf4a8f8eb592672d0e9740514
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend b/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend
index 589405e..9ead959 100644
--- a/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend
+++ b/meta-ibm/meta-witherspoon/recipes-phosphor/mboxd/mboxd_%.bbappend
@@ -3,11 +3,11 @@
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-SYSTEMD_SERVICE_${PN}_append_ibm-ac-server = " check-pnor-format.service"
+SYSTEMD_SERVICE_${PN}_append_df-openpower-ubi-fs = " check-pnor-format.service"
 
-SRC_URI_append_ibm-ac-server = " file://check_pnor_format.sh"
+SRC_URI_append_df-openpower-ubi-fs = " file://check_pnor_format.sh"
 
-do_install_append_ibm-ac-server() {
+do_install_append_df-openpower-ubi-fs() {
 	install -d ${D}${bindir}
 	install -m 0755 ${WORKDIR}/check_pnor_format.sh ${D}${bindir}/check_pnor_format.sh
 }