linuxOS_AP05/external/eq_drc_process/S97_EQ_init
2025-06-02 13:59:07 +08:00

21 lines
258 B
Bash
Executable File

#!/bin/sh
#
# Start 3308 linux service....
#
case "$1" in
start)
# ueventd
/usr/bin/eq_drc_process &
;;
stop)
printf "stop eq_drc_process finished"
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac
sleep 1
exit 0