You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk_firmware/keyboards/satan/keymaps/iso_split_rshift/build.sh

19 lines
419 B

#!/bin/bash
# adjust for cpu
# -j 16 gave best result on a hyperthreaded quad core core i7
THREADS="-j 16"
8 years ago
KMAP=iso_split_rschift
echo "We need sudo later"
sudo ls 2>&1 /dev/null
make clean
8 years ago
make KEYMAP=iso_split_rschift ${THREADS}
if [[ $? -eq 0 ]]
then
echo "please trigger flashing! you have 5 seconds"
sleep 5
8 years ago
sudo make KEYMAP=iso_split_rschift dfu ${THREADS}
else
echo "make failed"
exit 77
fi