Remove more junk files and scripts (#20682)
This commit is contained in:
parent
8b47aafdab
commit
fb48db4c8f
13 changed files with 0 additions and 3164 deletions
|
@ -1,42 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# adjust for cpu
|
|
||||||
# -j 16 gave best result on a hyperthreaded quad core core i7
|
|
||||||
|
|
||||||
LIMIT=10
|
|
||||||
THREADS="-j 16"
|
|
||||||
KMAP=iso_split_rshift
|
|
||||||
|
|
||||||
echo "We need sudo later"
|
|
||||||
sudo ls 2>&1 /dev/null
|
|
||||||
|
|
||||||
function wait_bootloader {
|
|
||||||
echo "Waiting for Bootloader..."
|
|
||||||
local STARTTIME=$(date +"%s")
|
|
||||||
local REMIND=0
|
|
||||||
local EXEC=dfu-programmer
|
|
||||||
local TARGET=atmega32u4
|
|
||||||
while true
|
|
||||||
do
|
|
||||||
sudo $EXEC $TARGET get > /dev/null 2>&1
|
|
||||||
[ $? -eq 0 ] && break
|
|
||||||
ENDTIME=$(date +"%s")
|
|
||||||
DURATION=$(($ENDTIME-$STARTTIME))
|
|
||||||
if [ $REMIND -eq 0 -a $DURATION -gt $LIMIT ]
|
|
||||||
then
|
|
||||||
echo "Did you forget to press the reset button?"
|
|
||||||
REMIND=1
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
}
|
|
||||||
make clean
|
|
||||||
make KEYMAP=${KMAP} ${THREADS}
|
|
||||||
if [[ $? -eq 0 ]]
|
|
||||||
then
|
|
||||||
echo "please trigger flashing!"
|
|
||||||
wait_bootloader
|
|
||||||
sudo make KEYMAP=${KMAP} dfu ${THREADS}
|
|
||||||
else
|
|
||||||
echo "make failed"
|
|
||||||
exit 77
|
|
||||||
fi
|
|
|
@ -1,6 +0,0 @@
|
||||||
# dfu-programmer atmega32u4 erase --force
|
|
||||||
# dfu-programmer atmega32u4 flash /path/to/firmware.hex
|
|
||||||
# dfu-programmer atmega32u4 reset
|
|
||||||
|
|
||||||
# run this in the qmk_firmware directory
|
|
||||||
make dz60:billiams_layout2:flash
|
|
|
@ -1,6 +0,0 @@
|
||||||
# dfu-programmer atmega32u4 erase --force
|
|
||||||
# dfu-programmer atmega32u4 flash /path/to/firmware.hex
|
|
||||||
# dfu-programmer atmega32u4 reset
|
|
||||||
|
|
||||||
# run this in the qmk_firmware directory
|
|
||||||
make dz60:billiams_layout4:flash
|
|
|
@ -1,7 +0,0 @@
|
||||||
#OLD WAY
|
|
||||||
# dfu-programmer atmega32u4 erase --force
|
|
||||||
# dfu-programmer atmega32u4 flash /path/to/firmware.hex
|
|
||||||
# dfu-programmer atmega32u4 reset
|
|
||||||
|
|
||||||
# run this in the qmk_firmware directory
|
|
||||||
make dz60:chrisae9:flash
|
|
|
@ -1,19 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#a tool to fix broken keymaps as a result of pull request #190
|
|
||||||
#changing the declaration of matrix_scan_user() and matrix_init_user()
|
|
||||||
#
|
|
||||||
#This script will save a copy of the specified keymap as keymap.c.bak
|
|
||||||
#and then create a new keymap.c with the definion corrected.
|
|
||||||
#this script must be run from the ergodox_ez directory
|
|
||||||
if [ $# -ne 1 ]; then
|
|
||||||
echo $0: usage: ./190hotfix keymap_name
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo Saving backup as ./keymaps/$1/keymap.c.bak ...
|
|
||||||
mv ./keymaps/$1/keymap.c ./keymaps/$1/keymap.c.bak
|
|
||||||
|
|
||||||
echo Modifying ./keymaps/$1/keymap.c ...
|
|
||||||
cat ./keymaps/$1/keymap.c.bak | sed -r 's/^void \* matrix_/void matrix_/'>./keymaps/$1/keymap.c
|
|
||||||
|
|
||||||
echo Complete!
|
|
|
@ -1,42 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# adjust for cpu
|
|
||||||
# -j 16 gave best result on a hyperthreaded quad core core i7
|
|
||||||
|
|
||||||
LIMIT=10
|
|
||||||
THREADS="-j 16"
|
|
||||||
KMAP=iso_split_rshift
|
|
||||||
|
|
||||||
echo "We need sudo later"
|
|
||||||
sudo ls 2>&1 /dev/null
|
|
||||||
|
|
||||||
function wait_bootloader {
|
|
||||||
echo "Waiting for Bootloader..."
|
|
||||||
local STARTTIME=$(date +"%s")
|
|
||||||
local REMIND=0
|
|
||||||
local EXEC=dfu-programmer
|
|
||||||
local TARGET=atmega32u4
|
|
||||||
while true
|
|
||||||
do
|
|
||||||
sudo $EXEC $TARGET get > /dev/null 2>&1
|
|
||||||
[ $? -eq 0 ] && break
|
|
||||||
ENDTIME=$(date +"%s")
|
|
||||||
DURATION=$(($ENDTIME-$STARTTIME))
|
|
||||||
if [ $REMIND -eq 0 -a $DURATION -gt $LIMIT ]
|
|
||||||
then
|
|
||||||
echo "Did you forget to press the reset button?"
|
|
||||||
REMIND=1
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
}
|
|
||||||
make clean
|
|
||||||
make KEYMAP=${KMAP} ${THREADS}
|
|
||||||
if [[ $? -eq 0 ]]
|
|
||||||
then
|
|
||||||
echo "please trigger flashing!"
|
|
||||||
wait_bootloader
|
|
||||||
sudo make KEYMAP=${KMAP} dfu ${THREADS}
|
|
||||||
else
|
|
||||||
echo "make failed"
|
|
||||||
exit 77
|
|
||||||
fi
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
sleep 10
|
|
||||||
avrdude -p m32u4 -P /dev/ttyACM0 -c avr109 -U flash:w:../../../../../.build/handwired_promethium_priyadi.hex
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
sleep 10
|
|
||||||
avrdude -p m32u4 -P /dev/ttyACM0 -c avr109 -U flash:w:../../../../../.build/handwired_promethium_priyadi.hex
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
make keebio/levinson/rev2:issmirnov
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
make keebio/levinson/rev2:issmirnov:dfu-split-left
|
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 213 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 213 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 206 KiB |
Loading…
Reference in a new issue