17 lines
442 B
Plaintext
17 lines
442 B
Plaintext
# Copyright (C) 2022 Vincent BENOIT <vincent.benoit@benserv.fr>
|
|
# Release under the MIT license (see COPYING.MIT for the terms)
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += " \
|
|
file://eth0.network \
|
|
"
|
|
|
|
FILES:${PN} += " \
|
|
${sysconfdir}/systemd/network/eth0.network \
|
|
"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${sysconfdir}/systemd/network
|
|
install -m 0644 ${WORKDIR}/eth0.network ${D}${sysconfdir}/systemd/network
|
|
}
|