diff options
Diffstat (limited to 'tmk_core/make_dfu_header.sh')
-rwxr-xr-x | tmk_core/make_dfu_header.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tmk_core/make_dfu_header.sh b/tmk_core/make_dfu_header.sh deleted file mode 100755 index 7e2283dd7..000000000 --- a/tmk_core/make_dfu_header.sh +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | ALL_CONFIGS=$* | ||
3 | GREP="grep" | ||
4 | |||
5 | cat <<- EOF > lib/lufa/Bootloaders/DFU/Keyboard.h | ||
6 | #pragma once | ||
7 | |||
8 | $($GREP "MANUFACTURER[ \t]" $ALL_CONFIGS -h | tail -1) | ||
9 | $($GREP "PRODUCT[ \t]" $ALL_CONFIGS -h | tail -1 | tr -d '\r') Bootloader | ||
10 | $($GREP "QMK_ESC_OUTPUT[ \t]" $ALL_CONFIGS -h | tail -1) | ||
11 | $($GREP "QMK_ESC_INPUT[ \t]" $ALL_CONFIGS -h | tail -1) | ||
12 | $($GREP "QMK_LED[ \t]" $ALL_CONFIGS -h | tail -1) | ||
13 | $($GREP "QMK_SPEAKER[ \t]" $ALL_CONFIGS -h | tail -1) | ||
14 | EOF | ||