blob: 708990e12498fd07036e47404851db12edab3c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI_append = " \
file://weston.service \
"
do_install_append() {
if [ "X${USE_GLES}" = "X1" ]; then
sed -e "/RequiresMountsFor=\/run/a Wants=rc.pvr.service" \
-e "/RequiresMountsFor=\/run/a After=rc.pvr.service" \
-e "s/\$OPTARGS/--idle-time=0 \$OPTARGS/" \
-i ${D}/${systemd_system_unitdir}/weston.service
fi
if [ "X${USE_MULTIMEDIA}" = "X1" ]; then
if [ "X${USE_V4L2_RENDERER}" = "X1" ]; then
sed -e "s/\$OPTARGS/--use-v4l2 \$OPTARGS/" \
-i ${D}/${systemd_system_unitdir}/weston.service
fi
fi
}
|