mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
14 lines
298 B
Bash
14 lines
298 B
Bash
#!/bin/sh
|
|
# load the firmware into Tascam USB devices (FPGA design)
|
|
|
|
LOADER=/usr/local/bin/usx2yloader
|
|
|
|
if [ -x /usr/bin/logger ]; then
|
|
/usr/bin/logger -t $0 "calling $LOADER for $DEVICE"
|
|
fi
|
|
$LOADER
|
|
/usr/local/bin/us428control&
|
|
if [ -x /usr/bin/logger ]; then
|
|
/usr/bin/logger -t $0 "leaving"
|
|
fi
|
|
|