mirror of
https://git.yoctoproject.org/meta-security
synced 2026-05-08 05:09:48 +00:00
6680225c05
Signed-off-by: Armin Kuster <akuster808@gmail.com>
14 lines
394 B
Plaintext
14 lines
394 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += " \
|
|
file://machine-id-commit-sync.conf \
|
|
file://random-seed-sync.conf \
|
|
"
|
|
|
|
do_install_append () {
|
|
for i in machine-id-commit random-seed; do
|
|
install -d ${D}/${systemd_system_unitdir}/systemd-$i.service.d
|
|
install -m 0644 ${WORKDIR}/$i-sync.conf ${D}/${systemd_system_unitdir}/systemd-$i.service.d
|
|
done
|
|
}
|