blob: 76877968a6569eae16a617c66a6b9e6950777c3b (
plain)
1
2
3
4
5
6
7
|
do_install[postfuncs] += "systemd_dep"
systemd_dep () {
if [ -f ${D}${systemd_unitdir}/system/psplash-quit.service ]; then
sed -i '/After=psplash-start.service/a Before=display-manager.service' ${D}${systemd_unitdir}/system/psplash-quit.service
fi
}
|