blob: 5109a2fba9d95f376464e495167a0b5a9cd42e5e [file] [log] [blame]
Adriana Kobylak8c6707f2021-08-06 17:35:36 +00001pkg_postinst:${PN}:append() {
Andrew Geissleree126002021-02-01 16:17:23 -06002 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 Geissler13140542021-02-01 16:26:18 -06005 # 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 Geissleree126002021-02-01 16:17:23 -060013
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
18 LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog-timeout@0.service"
Shantappa Teekappanavar47acdb12021-08-24 22:08:31 -050019 TARGET="../openpower-debug-collector-watchdog-timeout@.service"
Andrew Geissleree126002021-02-01 16:17:23 -060020 ln -s $TARGET $LINK
21}
22
Adriana Kobylak8c6707f2021-08-06 17:35:36 +000023pkg_prerm:${PN}:append() {
Andrew Geissler13140542021-02-01 16:26:18 -060024 if [ "${@bb.utils.filter('DISTRO_FEATURES', 'mpreboot', d)}" != mpreboot ]; then
25 LINK="$D$systemd_system_unitdir/obmc-host-crash@0.target.wants/openpower-debug-collector-checkstop@0.service"
26 rm $LINK
27 fi
Andrew Geissleree126002021-02-01 16:17:23 -060028 LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog@0.service"
29 rm $LINK
30 LINK="$D$systemd_system_unitdir/obmc-host-timeout@0.target.wants/openpower-debug-collector-watchdog-timeout@0.service"
31 rm $LINK
32}