blob: 4bff6e3313fb9f51e3153a7c2fcc1c11ae886fab [file] [log] [blame]
Brandon Kim236c94e2021-07-20 15:48:31 -07001SUMMARY = "Dummy image uploader for sending debug binaries"
2DESCRIPTION = "Dummy image uploader for sending debug binaries"
3PR = "r1"
4
5LICENSE = "Apache-2.0"
6LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
7
8inherit systemd
9
10SRC_URI += "file://config-dummy.json"
11SRC_URI += "file://dummy-verify.service"
12
Willy Tu4dd03ca2021-08-06 09:37:35 -070013FILES:${PN} += "${datadir}/phosphor-ipmi-flash"
Brandon Kim236c94e2021-07-20 15:48:31 -070014
Willy Tu4dd03ca2021-08-06 09:37:35 -070015SYSTEMD_SERVICE:${PN} += "dummy-verify.service"
Brandon Kim236c94e2021-07-20 15:48:31 -070016
17do_install() {
18 install -d ${D}${datadir}/phosphor-ipmi-flash
19 install -m 0644 ${WORKDIR}/config-dummy.json ${D}${datadir}/phosphor-ipmi-flash
20
21 install -d ${D}${systemd_system_unitdir}
22 install -m 0644 ${WORKDIR}/dummy-verify.service ${D}${systemd_system_unitdir}
23}