10 lines
291 B
Plaintext
10 lines
291 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://dhcpcd.conf"
|
|
|
|
do_install:append() {
|
|
install -m 0644 ${WORKDIR}/dhcpcd.conf ${D}${sysconfdir}
|
|
}
|