Initial commit

This commit is contained in:
Your Name
2026-04-23 17:07:55 +08:00
commit b7e39e063b
16725 changed files with 1625565 additions and 0 deletions
@@ -0,0 +1,14 @@
[Unit]
Description=Host misc manager
[Service]
Restart=always
RestartSec=5
ExecStart=/usr/bin/host-misc-manager
StartLimitInterval=0
SyslogIdentifier=host-misc-manager
Type=dbus
BusName=xyz.openbmc_project.Host.Misc.Manager
[Install]
WantedBy=multi-user.target
@@ -0,0 +1,12 @@
FILESEXTRAPATHS:${PN} := "${THISDIR}/${PN}:"
S = "${WORKDIR}"
LICENSE = "CLOSED"
SRC_URI = "file://host-misc-manager"
inherit obmc-phosphor-systemd
DEPENDS = " systemd sdbusplus phosphor-logging libgpiod"
SYSTEMD_SERVICE:${PN} = "xyz.openbmc_project.Host.Misc.Manager.service"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/host-misc-manager ${D}${bindir}
}