summaryrefslogtreecommitdiffstats
path: root/external/meta-updater/recipes-connectivity/networkd-dhcp-conf/networkd-dhcp-conf.bb
blob: 20a1a1761d6048e620b005cd292e3d4d0ba2ea8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
SUMMARY = "systemd-networkd config to setup wired interface with dhcp"
DESCRIPTION = "Provides automatic dhcp network configuration for wired \
interfaces through systemd-networkd"
LICENSE = "MPL-2.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MPL-2.0;md5=815ca599c9df247a0c7f619bab123dad"

inherit systemd

RPROVIDES_${PN} = "network-configuration"

SRC_URI = " \
  file://20-wired-dhcp.network \
  file://resolvconf-clean \
  file://clean-connman-symlink.service \
  "
PR = "r1"

REQUIRED_DISTRO_FEATURES_${PN} = "systemd"
RCONFLICTS_${PN} = "connman"

S = "${WORKDIR}"

PACKAGE_ARCH = "${MACHINE_ARCH}"

FILES_${PN} = " \
        ${systemd_unitdir}/network/* \
        ${sbindir}/resolvconf-clean \
        ${systemd_unitdir}/system/clean-connman-symlink.service \
        "

SYSTEMD_SERVICE_${PN} = "clean-connman-symlink.service"

DEV_MATCH_DIRECTIVE ?= "Name=en*"

do_install() {
    install -d ${D}/${systemd_unitdir}/network
    install -m 0644 ${WORKDIR}/20-wired-dhcp.network ${D}${systemd_unitdir}/network
    sed -i -e 's|@MATCH_DIRECTIVE@|${DEV_MATCH_DIRECTIVE}|g' ${D}${systemd_unitdir}/network/20-wired-dhcp.network

    install -d ${D}${sbindir}
    install -m 0755 ${WORKDIR}/resolvconf-clean ${D}${sbindir}/resolvconf-clean
    install -d ${D}${systemd_unitdir}/system
    install -m 0644 ${WORKDIR}/clean-connman-symlink.service ${D}${systemd_unitdir}/system/clean-connman-symlink.service
}