SUMMARY = "AC Boot Check" DESCRIPTION = "Script to check the resetreason for AC boot" S = "${WORKDIR}" SRC_URI = "file://ac-boot-check.sh \ file://ac-boot-check.service \ " LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${INTELBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" RDEPENDS:${PN} += "bash" inherit systemd FILES:${PN} += "${systemd_system_unitdir}/ac-boot-check.service" do_install() { install -d ${D}${systemd_system_unitdir} install -m 0644 ${WORKDIR}/ac-boot-check.service ${D}${systemd_system_unitdir} install -d ${D}${bindir} install -m 0755 ${S}/ac-boot-check.sh ${D}/${bindir}/ac-boot-check.sh } SYSTEMD_SERVICE:${PN} += " ac-boot-check.service"