rk3568_ubuntu_r60_v1.3.2/buildroot/package/chromium-wayland/S99chromium-wayland.sh
2023-11-03 06:12:44 +00:00

22 lines
293 B
Bash
Executable File

#!/bin/sh
#
# Setup chromium environment.
#
case "$1" in
start)
# Create dummy video node for V4L2 VDA/VEA with rkmpp plugin
echo dec > /dev/video-dec0
echo enc > /dev/video-enc0
;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?