mirror of
https://git.yoctoproject.org/meta-security
synced 2026-01-11 15:00:34 +00:00
* WORKDIR -> UNPACKDIR transition * Switch away from S = WORKDIR Signed-off-by: Changqing Li <changqing.li@windriver.com> [Fixed up the smack changes due to prior patch] Signed-off-by: Armin Kuster <akuster808@gmail.com>
14 lines
396 B
Plaintext
14 lines
396 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 ${UNPACKDIR}/$i-sync.conf ${D}/${systemd_system_unitdir}/systemd-$i.service.d
|
|
done
|
|
}
|