Add additional network configuration for end0 63/29963/2
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Sun, 2 Jun 2024 02:56:07 +0000 (11:56 +0900)
committerNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Sun, 2 Jun 2024 08:38:46 +0000 (17:38 +0900)
After the scarthgap update, a eth0 device force rename to end0 in boot time.
This patch fix loss capability for network IP configuration by systemd-networkd.

Bug-AGL: SPEC-5158

Change-Id: I483845f475472c0a12c17f81ccc5bc22a9f9e65e
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-wired.network [new file with mode: 0644]
meta-agl-ic-container/recipes-core/systemd/systemd-netif-config_0.1.bb

diff --git a/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-wired.network b/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-wired.network
new file mode 100644 (file)
index 0000000..41ff773
--- /dev/null
@@ -0,0 +1,6 @@
+[Match]
+Name=end0
+
+[Network]
+DHCP=ipv4
+
index 0714f62..52e5415 100644 (file)
@@ -6,10 +6,12 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384
 
 SRC_URI = " \
     file://20-wired.network \
+    file://21-wired.network \
     "
 
 do_install() {
        install -D -m0644 ${WORKDIR}/20-wired.network ${D}${sysconfdir}/systemd/network/20-wired.network
+       install -D -m0644 ${WORKDIR}/21-wired.network ${D}${sysconfdir}/systemd/network/21-wired.network
 }
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"