meta-phosphor: network: allow disabling u-boot env

Not all systems allow modifying the u-boot environment, so make this a
PACKAGECONFIG option instead of assuming it's available.

Also add the missing RDEPENDS on u-boot-fw-utils when this feature is
enabled.

Change-Id: I88974565e5a669803d779d3c99e351f2fe31d78f
Signed-off-by: Benjamin Fair <benjaminfair@google.com>
diff --git a/recipes-phosphor/network/phosphor-network_git.bb b/recipes-phosphor/network/phosphor-network_git.bb
index 0928c95..a4de745 100644
--- a/recipes-phosphor/network/phosphor-network_git.bb
+++ b/recipes-phosphor/network/phosphor-network_git.bb
@@ -20,6 +20,11 @@
 DEPENDS += "phosphor-logging"
 DEPENDS += "libnl"
 
+PACKAGECONFIG ??= "uboot-env"
+
+UBOOT_ENV_RDEPENDS = "${@d.getVar('PREFERRED_PROVIDER_u-boot-fw-utils', True) or 'u-boot-fw-utils'}"
+PACKAGECONFIG[uboot-env] = "--with-uboot-env,--without-uboot-env,,${UBOOT_ENV_RDEPENDS}"
+
 S = "${WORKDIR}/git"
 
 SERVICE_FILE = "xyz.openbmc_project.Network.service"