From f818d656ed9de2def39840b141b153ddfa22a5ba Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sun, 13 Oct 2024 14:43:28 +0900 Subject: [PATCH] Enable cdc-ncm network configuration Enable cdc-ncm network configuration to use momiweb in demo. This patch enable smartphone tethering capability. Bug-AGL: SPEC-5263 Change-Id: I4eec7857230a03522249a2be9a9f8bab8661aaed Signed-off-by: Naoto Yamaguchi --- .../recipes-core/systemd/systemd-netif-config/21-usb.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-usb.network diff --git a/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-usb.network b/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-usb.network new file mode 100644 index 00000000..6426a64d --- /dev/null +++ b/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config/21-usb.network @@ -0,0 +1,6 @@ +[Match] +Name=usb0 + +[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 52e5415c..4024c278 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 @@ -7,11 +7,13 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384 SRC_URI = " \ file://20-wired.network \ file://21-wired.network \ + file://21-usb.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 + install -D -m0644 ${WORKDIR}/21-usb.network ${D}${sysconfdir}/systemd/network/21-usb.network } PACKAGE_ARCH = "${MACHINE_ARCH}" -- 2.16.6