SUMMARY = "Phosphor Systemd targets" DESCRIPTION = "Provides well known Systemd syncronization points for OpenBMC." HOMEPAGE = "http://github.com/openbmc" PR = "r1" inherit obmc-phosphor-systemd inherit obmc-phosphor-license inherit allarch # Chassis power synchronization targets # - start-pre: Services to run before we start power on process # - start: Services to run to do the chassis power on # - on: Services to run once power is on # - stop-pre,stop,off: Same as above but applied to powering off # - reset-on: Services to check if chassis power is on after bmc reset CHASSIS_SYNCH_TARGETS = "start-pre start on stop-pre stop off reset-on" # Chassis action power targets # - on: Services to run to power on the chassis # - off: Services to run to power off the chassis # - reset: Services to check chassis power state and update chassis "on" target CHASSIS_ACTION_TARGETS = "on off reset" # Track all host synchronization point targets # - start-pre: Services to run before we start host boot # - starting: Services to run to do the host boot # - started: Services to run once the host is booted # - stop-pre,stopping,stopped: Same as above but applied to shutting down the host # - reset-running: Services to check if host is running after bmc reset HOST_SYNCH_TARGETS = "start-pre starting started stop-pre stopping stopped reset-running" # Track all host action targets # - start: Service to run to start the host # - stop: Services to run to shutdown the host # - quiesce: Target to enter on host boot failure # - reset: Services to check if host is running and update host "start" target HOST_ACTION_TARGETS = "start stop quiesce reset" CHASSIS_SYNCH_FMT = "obmc-power-{0}@.target" CHASSIS_ACTION_FMT = "obmc-chassis-power{0}@.target" HOST_SYNCH_FMT = "obmc-host-{0}@.target" HOST_ACTION_FMT = "obmc-host-{0}@.target" CHASSIS_LINK_SYNCH_FMT = "${CHASSIS_SYNCH_FMT}:obmc-power-{0}@{1}.target" CHASSIS_LINK_ACTION_FMT = "${CHASSIS_ACTION_FMT}:obmc-chassis-power{0}@{1}.target" HOST_LINK_SYNCH_FMT = "${HOST_SYNCH_FMT}:obmc-host-{0}@{1}.target" HOST_LINK_ACTION_FMT = "${HOST_ACTION_FMT}:obmc-host-{0}@{1}.target" SYSTEMD_SERVICE_${PN} += " \ obmc-mapper.target \ obmc-webserver-pre.target \ obmc-fans-ready.target \ obmc-fan-control.target \ obmc-standby.target \ " SYSTEMD_SERVICE_${PN} += "${@compose_list(d, 'CHASSIS_SYNCH_FMT', 'CHASSIS_SYNCH_TARGETS')}" SYSTEMD_SERVICE_${PN} += "${@compose_list(d, 'CHASSIS_ACTION_FMT', 'CHASSIS_ACTION_TARGETS')}" SYSTEMD_SERVICE_${PN} += "${@compose_list(d, 'HOST_SYNCH_FMT', 'HOST_SYNCH_TARGETS')}" SYSTEMD_SERVICE_${PN} += "${@compose_list(d, 'HOST_ACTION_FMT', 'HOST_ACTION_TARGETS')}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'CHASSIS_LINK_SYNCH_FMT', 'CHASSIS_SYNCH_TARGETS', 'OBMC_CHASSIS_INSTANCES')}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'CHASSIS_LINK_ACTION_FMT', 'CHASSIS_ACTION_TARGETS', 'OBMC_CHASSIS_INSTANCES')}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'HOST_LINK_SYNCH_FMT', 'HOST_SYNCH_TARGETS', 'OBMC_HOST_INSTANCES')}" SYSTEMD_LINK_${PN} += "${@compose_list(d, 'HOST_LINK_ACTION_FMT', 'HOST_ACTION_TARGETS', 'OBMC_HOST_INSTANCES')}"