diff --git a/ControlPanel/.DS_Store b/ControlPanel/.DS_Store index 534ceb7..560ea38 100644 Binary files a/ControlPanel/.DS_Store and b/ControlPanel/.DS_Store differ diff --git a/highLatency b/highLatency deleted file mode 100755 index 04a982b..0000000 --- a/highLatency +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/tcsh -# -# Adjusts the driver's settings to use low latency. -# W.Pasman 7feb2015 -# -echo "Adjusting driver for low latency" -set pathname=`dirname "$0"` -cd "$pathname"/EMUUSBAudio.kext/Contents/ -cat Info.plist | sed -e 's/4200<\/integer>/35000<\/integer>/' > Info1.plist -mv Info1.plist Info.plist - diff --git a/kextInstall b/kextInstall deleted file mode 100755 index 38c1b03..0000000 --- a/kextInstall +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/tcsh -# -# install script for EMU Audio kernel extension -# the EMUUSBAudio.kext file should be in same dir as this script. -# W.Pasman 8oct2014 -# we also run kextutil to write all symbols to ~/symbols, for panic debugging . -# -echo "Installing EMU driver" -set pathname=`dirname "$0"` -cd "$pathname" - -echo "plz to turn off your EMU USB device for loading of kext, you have 3 seconds to do so" -sleep 3 -sudo kextunload /System/Library/Extensions/EMUUSBAudio.kext -echo "deleting old kext" -sudo rm -r /System/Library/Extensions/EMUUSBAudio.kext -echo "installing new kernel extension" -sudo cp -r EMUUSBAudio.kext /System/Library/Extensions - -echo "deleting old midi plugin" -sudo rm -rf /Library/Audio/MIDI\ Drivers/EMUMIDIDriver.plugin -echo "installing new midi plugin" -sudo mkdir -p /Library/Audio/MIDI\ Drivers/ -sudo cp -R EMUMIDIDriver\ orig.plugin /Library/Audio/MIDI\ Drivers/EMUMIDIDriver.plugin - - -echo "doing permissions stuff" -cd /Library/Audio/MIDI\ Drivers/ -sudo chgrp -R wheel EMUMIDIDriver.plugin -cd /System/Library/Extensions -sudo chgrp -R wheel EMUUSBAudio.kext - -echo "loading new kext" -sudo kextload -v EMUUSBAudio.kext -# enable following for debugging. -# kextutil -s ~/symbols/ -A EMUUSBAudio.kext/ - - - -echo "so long" - - -# manual start: -# chmod -R 755 EMUUSBAudio.kext/ -# sudo chgrp -R wheel EMUUSBAudio.kext -#sudo kextload -v EMUUSBAudio.kext/ \ No newline at end of file diff --git a/lowLatency b/lowLatency deleted file mode 100755 index b7feb2a..0000000 --- a/lowLatency +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/tcsh -# -# Adjusts the driver's settings to use low latency. -# W.Pasman 7feb2015 -# -echo "Adjusting driver for low latency" -set pathname=`dirname "$0"` -cd "$pathname"/EMUUSBAudio.kext/Contents/ -cat Info.plist | sed -e 's/4200<\/integer>/1000<\/integer>/' > Info1.plist -mv Info1.plist Info.plist -