new/external/rkscript/S05async-commit.sh
2025-05-10 21:58:58 +08:00

24 lines
368 B
Bash
Executable File

#!/bin/sh
### BEGIN INIT INFO
# Provides: async-commit
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Description: Enable ASYNC_COMMIT for Rockchip BSP kernel > 4.4
### END INIT INFO
case "$1" in
start)
/usr/bin/async-commit ;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?