ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /usr/lib/udev/ |
#!/bin/sh # load the firmware into Tascam USB devices (FPGA design), # start appropriate control application. prefix=/usr exec_prefix=/usr LOADER=/usr/bin/usx2yloader CONTROLLER=NOTUSED if [ -x $LOADER ]; then if [ -x /usr/bin/logger ]; then /usr/bin/logger -t $0 "calling $LOADER for $DEVICE" fi $LOADER else if [ -x /usr/bin/logger ]; then /usr/bin/logger -t $0 "missing $LOADER for $DEVICE" fi fi case $PRODUCT in 1604/8001/*) CONTROLLER=/usr/bin/us428control ;; 1604/8005/*) CONTROLLER=/usr/bin/us428control ;; *) ;; esac if [ $CONTROLLER != NOTUSED ]; then if [ -x $CONTROLLER ]; then if [ -x /usr/bin/logger ]; then /usr/bin/logger -t $0 "starting $CONTROLLER for $DEVICE" fi $CONTROLLER & else if [ -x /usr/bin/logger ]; then /usr/bin/logger -t $0 "missing $CONTROLLER for $DEVICE" fi fi fi if [ -x /usr/bin/logger ]; then /usr/bin/logger -t $0 "leaving" fi exit 0