linuxOS_PX30_CAR/external/eq_drc_process/S97_EQ_init
2026-01-20 14:00:13 +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