mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
15 lines
298 B
Text
15 lines
298 B
Text
|
|
#!/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
|
||
|
|
|