meta-agl-uhmi-demo: Removed fixed configuration 03/30803/2
authorMarius Vlad <marius.vlad@collabora.com>
Fri, 7 Feb 2025 13:39:18 +0000 (15:39 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 26 Feb 2025 22:44:36 +0000 (22:44 +0000)
Rather than having a static IPs assigned let us use DHCP by default.
This is more in common with the other images we have available. Also
qemu can provide DHCP server so we wouldn't really need this.

A fixed IP configuration can't really work out, when we have other
network class in the system, meaning that this won't really work unless
you have the same class in your network already we that's not case.

Change-Id: I19aeecdac2f8e5bcade1ee9e4c130880e710b85b
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/wired-receiver.config [deleted file]
meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/wired-sender.config [deleted file]
meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/uhmi-config-receiver.bb
meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/uhmi-config-sender.bb

diff --git a/meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/wired-receiver.config b/meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/wired-receiver.config
deleted file mode 100644 (file)
index 9d6b3a6..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-[global]
-Name = Wired
-Description = Wired network configuration
-
-[service_ether]
-Type = ethernet
-IPv4 = 192.168.0.101/24
diff --git a/meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/wired-sender.config b/meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/wired-sender.config
deleted file mode 100644 (file)
index 777a3e9..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-[global]
-Name = Wired
-Description = Wired network configuration
-
-[service_ether]
-Type = ethernet
-IPv4 = 192.168.0.100/24
index 94092b1..b0b9a17 100644 (file)
@@ -3,20 +3,11 @@ LICENSE     = "MIT"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
 
 SRC_URI = " \
-    file://wired-receiver.config \
     file://uhmi-ivi-wm.conf \
 "
 
 do_install() {
-    if [ ! -e ${D}/var/lib/connman/wired.config ]; then
-        install -d ${D}/var/lib/connman/
-        install -m 6444 ${WORKDIR}/wired-receiver.config ${D}/var/lib/connman/wired.config
-    fi
-
     install -d ${D}/etc/systemd/system/uhmi-ivi-wm.service.d/
     install -m 0644 ${WORKDIR}/uhmi-ivi-wm.conf ${D}/etc/systemd/system/uhmi-ivi-wm.service.d/
 }
 
-FILES:${PN} += " \
-    /var/lib/connman/wired.config \
-"
index ee854d8..04b2067 100644 (file)
@@ -5,16 +5,10 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
 SRC_URI = " \
     file://app.json \
     file://initial_vscreen.json \
-    file://wired-sender.config \
     file://uhmi-ivi-wm.conf \
 "
 
 do_install() {
-    if [ ! -e ${D}/var/lib/connman/wired.config ]; then
-        install -d ${D}/var/lib/connman/
-        install -m 6444 ${WORKDIR}/wired-sender.config ${D}/var/lib/connman/wired.config
-    fi
-
     install -d ${D}/var/local/uhmi-app/glmark2
     install -m 644 ${WORKDIR}/app.json ${D}/var/local/uhmi-app/glmark2/
     install -m 644 ${WORKDIR}/initial_vscreen.json ${D}/var/local/uhmi-app/glmark2/
@@ -24,6 +18,5 @@ do_install() {
 }
 
 FILES:${PN} += " \
-    /var/lib/connman/wired.config \
     /var/local/uhmi-app/glmark2 \
 "