mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Make symlink to utils and export programmer variables
This commit is contained in:
parent
9c582fc797
commit
b8899b48b4
2 changed files with 18 additions and 1 deletions
12
util/activate_wsl.sh
Normal file
12
util/activate_wsl.sh
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
util_dir=~/qmk_utils
|
||||||
|
download_dir=$util_dir/wsl_downloaded
|
||||||
|
|
||||||
|
export DFU_PROGRAMMER=$download_dir/dfu-programmer/dfu-programmer.exe
|
||||||
|
export DFU_UTIL=$download_dir/dfu-util-0.9-win64/dfu-util.exe
|
||||||
|
export TEENSY_LOADER_CLI=$download_dir/teensy_loader_cli.exe
|
||||||
|
export BATCHISP=$download_dir/Flip/bin/batchisp.exe
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,6 @@ function install_utils {
|
||||||
|
|
||||||
function install_drivers {
|
function install_drivers {
|
||||||
pushd $download_dir
|
pushd $download_dir
|
||||||
cp ../drivers.txt .
|
|
||||||
cmd.exe /C qmk_driver_installer.exe $1 $2 ../drivers.txt
|
cmd.exe /C qmk_driver_installer.exe $1 $2 ../drivers.txt
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
}
|
}
|
||||||
|
@ -101,5 +100,11 @@ while true; do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Creating a softlink to the utils directory as ~/qmk_utils."
|
||||||
|
echo "This is needed so that the the make system can find all utils it need."
|
||||||
|
read -p "Press any key to continue (ctrl-c to abort)"
|
||||||
|
ln -sf "$dir" ~/qmk_utils
|
||||||
|
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue