summaryrefslogtreecommitdiffstats
path: root/recipes-connectivity
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2019-03-06 12:43:33 +0100
committerLaurent Bonnans <laurent.bonnans@here.com>2019-03-06 16:12:43 +0100
commit8e33202195c3e0c133ba705d6c77e669fcf3bfad (patch)
treeb1821526b95e5624e62559fe8a169e14f3bd0daf /recipes-connectivity
parent1fdd1d1ced34de8eefe6d34da03c6db20b98f141 (diff)
downloadmeta-updater-8e33202195c3e0c133ba705d6c77e669fcf3bfad.tar.gz
Replace connman with systemd-networkd on raspberrypi
Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
Diffstat (limited to 'recipes-connectivity')
-rw-r--r--recipes-connectivity/networkd-dhcp-conf/files/20-wired-dhcp.network2
-rw-r--r--recipes-connectivity/networkd-dhcp-conf/networkd-dhcp-conf.bb3
2 files changed, 4 insertions, 1 deletions
diff --git a/recipes-connectivity/networkd-dhcp-conf/files/20-wired-dhcp.network b/recipes-connectivity/networkd-dhcp-conf/files/20-wired-dhcp.network
index aec1849..edb3678 100644
--- a/recipes-connectivity/networkd-dhcp-conf/files/20-wired-dhcp.network
+++ b/recipes-connectivity/networkd-dhcp-conf/files/20-wired-dhcp.network
@@ -1,5 +1,5 @@
1[Match] 1[Match]
2Name=en* 2@MATCH_DIRECTIVE@
3 3
4[Network] 4[Network]
5DHCP=yes 5DHCP=yes
diff --git a/recipes-connectivity/networkd-dhcp-conf/networkd-dhcp-conf.bb b/recipes-connectivity/networkd-dhcp-conf/networkd-dhcp-conf.bb
index 39500c7..1a515a2 100644
--- a/recipes-connectivity/networkd-dhcp-conf/networkd-dhcp-conf.bb
+++ b/recipes-connectivity/networkd-dhcp-conf/networkd-dhcp-conf.bb
@@ -19,7 +19,10 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
19 19
20FILES_${PN} = "${systemd_unitdir}/network/*" 20FILES_${PN} = "${systemd_unitdir}/network/*"
21 21
22DEV_MATCH_DIRECTIVE ?= "Name=en*"
23
22do_install() { 24do_install() {
23 install -d ${D}/${systemd_unitdir}/network 25 install -d ${D}/${systemd_unitdir}/network
24 install -m 0644 ${WORKDIR}/20-wired-dhcp.network ${D}/${systemd_unitdir}/network 26 install -m 0644 ${WORKDIR}/20-wired-dhcp.network ${D}/${systemd_unitdir}/network
27 sed -i -e 's|@MATCH_DIRECTIVE@|${DEV_MATCH_DIRECTIVE}|g' ${D}${systemd_unitdir}/network/20-wired-dhcp.network
25} 28}