Files
2023-01-03 09:41:38 +01:00

21 lines
717 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://hostname \
file://hosts \
file://fstab \
file://locale.conf \
file://vconsole.conf"
FILES:{PN} += "${sysconfdir}/locale.conf \
${sysconfdir}/vconsole.conf"
do_install:append() {
install -m 0644 ${WORKDIR}/hostname ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/hosts ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/fstab ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/locale.conf ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/vconsole.conf ${D}${sysconfdir}
}