blob: 0714f62bfb446883d205b90c06ad60d28355b4a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUMMARY = "Systemd network interface configuration"
DESCRIPTION = "Systemd network interface configuration \
"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
SRC_URI = " \
file://20-wired.network \
"
do_install() {
install -D -m0644 ${WORKDIR}/20-wired.network ${D}${sysconfdir}/systemd/network/20-wired.network
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
FILES:${PN} = "\
${sysconfdir}/systemd/network/* \
"
|