Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1 | FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" |
2 | |||||
3 | do_install:append:rpi() { | ||||
4 | if [ -e ${D}/${sysconfdir}/init.d/weston ]; then | ||||
5 | sed -i 's#weston-start --#weston-start -- --continue-without-input#' ${D}/${sysconfdir}/init.d/weston | ||||
6 | fi | ||||
7 | if [ -e ${D}${systemd_system_unitdir}/weston.service ]; then | ||||
8 | sed -i 's#ExecStart=/usr/bin/weston#ExecStart=/usr/bin/weston --continue-without-input#' ${D}${systemd_system_unitdir}/weston.service | ||||
9 | fi | ||||
10 | } |