From 6224ef6288ca0c51f5292181b4b10d6684cc49d8 Mon Sep 17 00:00:00 2001
From: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Date: Sun, 2 Jun 2024 11:56:07 +0900
Subject: [PATCH] Add additional network configuration for end0

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>
---
 .../recipes-core/systemd/systemd-netif-config/21-wired.network      | 6 ++++++
 .../recipes-core/systemd/systemd-netif-config_0.1.bb                | 2 ++
 2 files changed, 8 insertions(+)
 create mode 100644 meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-wired.network

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
index 00000000..41ff7735
--- /dev/null
+++ b/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-wired.network
@@ -0,0 +1,6 @@
+[Match]
+Name=end0
+
+[Network]
+DHCP=ipv4
+
diff --git a/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config_0.1.bb b/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config_0.1.bb
index 0714f62b..52e5415c 100644
--- a/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config_0.1.bb
+++ b/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config_0.1.bb
@@ -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}"
-- 
2.16.6