From 58bbfc5fa6e1d3166af433eaeb763d25972685cd Mon Sep 17 00:00:00 2001 From: yoyoerx Date: Fri, 11 Mar 2016 11:16:19 -0500 Subject: PR190hotfix.sh, fresh hexes, makeallhex.sh script --- keyboard/ergodox_ez/190hotfix.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 keyboard/ergodox_ez/190hotfix.sh (limited to 'keyboard/ergodox_ez/190hotfix.sh') diff --git a/keyboard/ergodox_ez/190hotfix.sh b/keyboard/ergodox_ez/190hotfix.sh new file mode 100755 index 000000000..bdc3adce2 --- /dev/null +++ b/keyboard/ergodox_ez/190hotfix.sh @@ -0,0 +1,19 @@ +#!/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! -- cgit v1.2.3-24-g4f1b