meta-openpower: first-boot-set-mac: use BPN

Avoid a new QA warning:

SRC_URI uses PN not BPN [src-uri-bad]

(From meta-openpower rev: 3ba5cd5ddaa2536ed583ee5ad47732d82577623f)

Change-Id: I328253a3d1348bfde764a8a4b2485f09c62249cf
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/meta-openpower/recipes-phosphor/network/first-boot-set-mac_1.0.bb b/meta-openpower/recipes-phosphor/network/first-boot-set-mac_1.0.bb
index 0fd040d..1a1ee97 100644
--- a/meta-openpower/recipes-phosphor/network/first-boot-set-mac_1.0.bb
+++ b/meta-openpower/recipes-phosphor/network/first-boot-set-mac_1.0.bb
@@ -10,11 +10,11 @@
 
 SYSTEMD_SERVICE_${PN} = "first-boot-set-mac@.service"
 
-SRC_URI = "file://${PN}.sh file://${PN}@.service"
+SRC_URI = "file://${BPN}.sh file://${BPN}@.service"
 
 S = "${WORKDIR}"
 do_install() {
     install -d ${D}${bindir} ${D}${systemd_system_unitdir}
-    install ${PN}.sh ${D}${bindir}/
-    install -m 644 ${PN}@.service ${D}${systemd_system_unitdir}/
+    install ${BPN}.sh ${D}${bindir}/
+    install -m 644 ${BPN}@.service ${D}${systemd_system_unitdir}/
 }