blob: 3187ff07abc0a03facd6602048eae80ba126b82d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Sample configuration for an Uptane Secondary"
LICENSE = "CLOSED"
inherit allarch
SRC_URI = "\
file://30-fake_pacman.toml \
"
do_install () {
install -m 0700 -d ${D}${libdir}/sota/conf.d
install -m 0644 ${WORKDIR}/30-fake_pacman.toml ${D}/${libdir}/sota/conf.d/30-fake_pacman.toml
}
FILES_${PN} = " \
${libdir}/sota/conf.d \
${libdir}/sota/conf.d/30-fake_pacman.toml \
"
# vim:set ts=4 sw=4 sts=4 expandtab:
|