1#!/bin/sh 2### BEGIN INIT INFO 3# Provides: async-commit 4# Required-Start: 5# Required-Stop: 6# Default-Start: S 7# Default-Stop: 8# Description: Enable ASYNC_COMMIT for Rockchip BSP kernel > 4.4 9### END INIT INFO 10 11case "$1" in 12 start) 13 /usr/bin/async-commit ;; 14 stop) 15 ;; 16 restart|reload) 17 ;; 18 *) 19 echo "Usage: $0 {start|stop|restart}" 20 exit 1 21esac 22 23exit $? 24