meta-facebook: systemd-networkd: wait for one

Many systems have multiple network interfaces, some of which are
USB network interfaces.  We should only wait for a single non-USB
interface to come online in order to consider the `network.target`
as online.  Add a configuration for `systemd-networkd-wait-online`
so that any `ethN` interface coming up is all that is necessary.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I4e5bad889be5a5b9deb537ac5f5df1da33882fad
diff --git a/meta-facebook/recipes-core/systemd/systemd/systemd-networkd-only-wait-for-one.conf b/meta-facebook/recipes-core/systemd/systemd/systemd-networkd-only-wait-for-one.conf
new file mode 100644
index 0000000..723ba0e
--- /dev/null
+++ b/meta-facebook/recipes-core/systemd/systemd/systemd-networkd-only-wait-for-one.conf
@@ -0,0 +1,3 @@
+[Service]
+ExecStart=
+ExecStart=/lib/systemd/systemd-networkd-wait-online --any --interface=eth0 --interface=eth1
diff --git a/meta-facebook/recipes-core/systemd/systemd_%.bbappend b/meta-facebook/recipes-core/systemd/systemd_%.bbappend
new file mode 100644
index 0000000..b11a83b
--- /dev/null
+++ b/meta-facebook/recipes-core/systemd/systemd_%.bbappend
@@ -0,0 +1,11 @@
+FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
+
+SRC_URI:append = " \
+    file://systemd-networkd-only-wait-for-one.conf \
+"
+
+do_install:append() {
+    install -m 644 -D \
+        ${WORKDIR}/systemd-networkd-only-wait-for-one.conf \
+        ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-networkd-only-wait-for-one.conf
+}