summaryrefslogtreecommitdiffstats
path: root/meta-agl-ic-container/recipes-core/systemd/systemd-netif-config_0.1.bb
blob: 2f6abe462714b552d59ec46a0c41c77c77c0c19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SUMMARY     = "Systemd network interface configuration"
DESCRIPTION = "Systemd network interface configuration \
              "
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

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}"

FILES:${PN} = "\
    ${sysconfdir}/systemd/network/* \
"