linuxOS_PX30_CAR/external/eq_drc_process/S97_EQ_init

21 lines
258 B
Plaintext
Raw Permalink Normal View History

2026-01-20 05:50:57 +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