Add support for hypervisor network configuration

This commit is created based on the following change in
phosphor-networkd that creates an intermediate app
which takes care of hypervisor network configuration
from bmcweb and and updates the bios manager:
https://gerrit.openbmc-project.xyz/c/openbmc/phosphor-networkd/+/43173

This service hosts the hypervisor network object that contains
ethernet and ip address objects which will have corresponding
attributes in the bios table.

The above gerrit commit will give further details on what this
application does.

Tested the same.

Signed-off-by: Asmitha Karunanithi <asmitk01@in.ibm.com>
Change-Id: I5a189b30efe931648a0d71da743ce607107dcfb3
diff --git a/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb b/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb
index 21caf67..ed1979f 100644
--- a/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb
+++ b/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb
@@ -29,7 +29,7 @@
 PACKAGECONFIG[default-ipv6-accept-ra] = "-Ddefault-ipv6-accept-ra=true,-Ddefault-ipv6-accept-ra=false,,"
 PACKAGECONFIG[nic-ethtool] = "-Dnic-ethtool=true,-Dnic-ethtool=false,,"
 PACKAGECONFIG[sync-mac] = "-Dsync-mac=true,-Dsync-mac=false,nlohmann-json,"
-PACKAGECONFIG[ibm-hyp-nw-config] = "-Dhyp-nw-config=true,-Dhyp-nw-config=false,,"
+PACKAGECONFIG[hyp-nw-config] = "-Dhyp-nw-config=true, -Dhyp-nw-config=false,,"
 
 S = "${WORKDIR}/git"
 
@@ -37,6 +37,6 @@
 
 SYSTEMD_PACKAGES = "${PN}"
 SYSTEMD_SERVICE:${PN} += "xyz.openbmc_project.Network.service"
-SYSTEMD_SERVICE:${PN}:append = "${@bb.utils.contains('PACKAGECONFIG', 'ibm-hyp-nw-config', ' xyz.openbmc_project.Network.Hypervisor.service', '', d)}"
+SYSTEMD_SERVICE:${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'hyp-nw-config', 'xyz.openbmc_project.Network.Hypervisor.service', '', d)}"
 
 EXTRA_OEMESON:append = " -Dtests=disabled"