linuxOS_AP05/external/eq_drc_process/S97_EQ_init

21 lines
258 B
Plaintext
Raw Normal View History

2025-06-02 05:59:07 +00:00
#!/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