Adriana Kobylak | 8c6707f | 2021-08-06 17:35:36 +0000 | [diff] [blame] | 1 | pkg_postinst:${PN}:append() { |
Andrew Geissler | ee12600 | 2021-02-01 16:17:23 -0600 | [diff] [blame] | 2 | mkdir -p $D$systemd_system_unitdir/obmc-host-crash@0.target.wants |
| 3 | mkdir -p $D$systemd_system_unitdir/obmc-host-timeout@0.target.wants |
| 4 | |
Andrew Geissler | 1314054 | 2021-02-01 16:26:18 -0600 | [diff] [blame] | 5 | # The obmc-host-crash target is repurposed for the memory preserving reboot |
| 6 | # feature when it is enabled. If not enabled, then install the standard |
| 7 | # debug collector checkstop service for basic error reporting |
| 8 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'mpreboot', d)}" != mpreboot ]; then |
| 9 | LINK="$D$systemd_system_unitdir/obmc-host-crash@0.target.wants/openpower-debug-collector-checkstop@0.service" |
| 10 | TARGET="../openpower-debug-collector-checkstop@.service" |
| 11 | ln -s $TARGET $LINK |
| 12 | fi |
Andrew Geissler | ee12600 | 2021-02-01 16:17:23 -0600 | [diff] [blame] | 13 | |
| 14 | LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog@0.service" |
| 15 | TARGET="../openpower-debug-collector-watchdog@.service" |
| 16 | ln -s $TARGET $LINK |
| 17 | |
Patrick Williams | 8c561ee | 2021-10-22 14:20:12 -0500 | [diff] [blame] | 18 | if [ "${@bb.utils.filter('MACHINE_FEATURES', 'phal', d)}" != 'phal' ]; then |
Shantappa Teekappanavar | 2ffa05e | 2021-08-31 17:49:10 -0500 | [diff] [blame] | 19 | LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog-timeout@0.service" |
| 20 | TARGET="../openpower-debug-collector-watchdog-timeout@.service" |
| 21 | ln -s $TARGET $LINK |
| 22 | fi |
Andrew Geissler | ee12600 | 2021-02-01 16:17:23 -0600 | [diff] [blame] | 23 | } |
| 24 | |
Dhruvaraj Subhashchandran | 26fb25b | 2022-01-18 07:07:18 -0600 | [diff] [blame] | 25 | pkg_postinst:${PN}:append:p10bmc() { |
| 26 | mkdir -p $D$systemd_system_unitdir/obmc-host-stop@0.target.wants |
| 27 | |
| 28 | LINK="$D$systemd_system_unitdir/obmc-host-stop@0.target.wants/clear_hostdumps_poweroff.service" |
| 29 | TARGET="../clear_hostdumps_poweroff.service" |
| 30 | ln -s $TARGET $LINK |
| 31 | } |
| 32 | |
Adriana Kobylak | 8c6707f | 2021-08-06 17:35:36 +0000 | [diff] [blame] | 33 | pkg_prerm:${PN}:append() { |
Andrew Geissler | 1314054 | 2021-02-01 16:26:18 -0600 | [diff] [blame] | 34 | if [ "${@bb.utils.filter('DISTRO_FEATURES', 'mpreboot', d)}" != mpreboot ]; then |
| 35 | LINK="$D$systemd_system_unitdir/obmc-host-crash@0.target.wants/openpower-debug-collector-checkstop@0.service" |
| 36 | rm $LINK |
| 37 | fi |
Andrew Geissler | ee12600 | 2021-02-01 16:17:23 -0600 | [diff] [blame] | 38 | LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog@0.service" |
| 39 | rm $LINK |
Patrick Williams | 8c561ee | 2021-10-22 14:20:12 -0500 | [diff] [blame] | 40 | if [ "${@bb.utils.filter('MACHINE_FEATURES', 'phal', d)}" != 'phal' ]; then |
Shantappa Teekappanavar | 2ffa05e | 2021-08-31 17:49:10 -0500 | [diff] [blame] | 41 | LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog-timeout@0.service" |
| 42 | rm $LINK |
| 43 | fi |
Andrew Geissler | ee12600 | 2021-02-01 16:17:23 -0600 | [diff] [blame] | 44 | } |
Dhruvaraj Subhashchandran | 26fb25b | 2022-01-18 07:07:18 -0600 | [diff] [blame] | 45 | |
| 46 | pkg_prerm:${PN}:append:p10bmc() { |
| 47 | LINK="$D$systemd_system_unitdir/obmc-host-stop@0.target.wants/clear_hostdumps_poweroff.service" |
| 48 | rm $LINK |
| 49 | } |