53 lines
2.2 KiB
Plaintext
53 lines
2.2 KiB
Plaintext
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
||
|
|
|
||
|
|
OVERRIDES:append = "${@bb.utils.contains('VIRTUAL-RUNTIME_obmc-host-state-manager', 'phosphor-state-manager-host', ':phosphor-fan-with-psm', ':phosphor-fan-without-psm', d)}"
|
||
|
|
|
||
|
|
PHOSPHOR_FAN_EXTRA_SERVICES = "obmc-poweroff.service"
|
||
|
|
PHOSPHOR_FAN_EXTRA_SERVICES:append:phosphor-fan-without-psm = " \
|
||
|
|
obmc-chassis-hard-poweroff@.target \
|
||
|
|
obmc-chassis-poweroff@0.target \
|
||
|
|
"
|
||
|
|
|
||
|
|
SRC_URI:append:fb-withhost = " file://obmc-chassis-hard-poweroff@.target \
|
||
|
|
file://obmc-chassis-poweroff@0.target \
|
||
|
|
file://obmc-poweroff.service \
|
||
|
|
file://host-poweroff"
|
||
|
|
|
||
|
|
PACKAGECONFIG:append = " json sensor-monitor"
|
||
|
|
|
||
|
|
EXTRA_OEMESON = "-Duse-host-power-state=enabled"
|
||
|
|
|
||
|
|
RDEPENDS:${PN}-sensor-monitor = " bash"
|
||
|
|
|
||
|
|
do_install:append:fb-withhost() {
|
||
|
|
install -d ${D}${systemd_system_unitdir}
|
||
|
|
for svc in ${PHOSPHOR_FAN_EXTRA_SERVICES}; do
|
||
|
|
install -m 0644 ${WORKDIR}/${svc} ${D}${systemd_system_unitdir}
|
||
|
|
done
|
||
|
|
|
||
|
|
# Store the bitbake variable OBMC_HOST_INSTANCES inside the script as HOST_INSTANCES variable using sed.
|
||
|
|
sed -i -e "s,HOST_INSTANCES_SED_REPLACEMENT_VALUE,${OBMC_HOST_INSTANCES},g" ${WORKDIR}/host-poweroff
|
||
|
|
|
||
|
|
install -m 0755 -d ${D}/var/lib/phosphor-fan-presence/sensor-monitor
|
||
|
|
|
||
|
|
install -d ${D}${libexecdir}/phosphor-fan-sensor-monitor
|
||
|
|
install -m 0777 ${WORKDIR}/host-poweroff ${D}${libexecdir}/phosphor-fan-sensor-monitor/
|
||
|
|
}
|
||
|
|
|
||
|
|
pkg_postinst:${PN}-sensor-monitor() {
|
||
|
|
mkdir -p $D$systemd_system_unitdir/obmc-chassis-hard-poweroff@0.target.requires
|
||
|
|
mkdir -p $D$systemd_system_unitdir/obmc-chassis-poweroff@0.target.requires
|
||
|
|
mkdir -p $D/var/lib/phosphor-fan-presence
|
||
|
|
|
||
|
|
LINK="$D$systemd_system_unitdir/obmc-chassis-hard-poweroff@0.target.requires/obmc-chassis-poweroff@.target"
|
||
|
|
TARGET="../obmc-chassis-poweroff@0.target"
|
||
|
|
ln -s $TARGET $LINK
|
||
|
|
|
||
|
|
LINK="$D$systemd_system_unitdir/obmc-chassis-poweroff@0.target.requires/obmc-poweroff.service"
|
||
|
|
TARGET="../obmc-poweroff.service"
|
||
|
|
ln -s $TARGET $LINK
|
||
|
|
}
|
||
|
|
|
||
|
|
FILES:${PN}-sensor-monitor += "${libexecdir}/phosphor-fan-sensor-monitor/host-poweroff"
|
||
|
|
FILES:${PN}-sensor-monitor += "${systemd_system_unitdir}"
|