blob: b6d6f2e8a7376d555b3f7f2b28b6308f82d57248 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
2
3do_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}