summaryrefslogtreecommitdiffstats
path: root/tmk_core/make_dfu_header.sh
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-28 21:25:41 +0000
committerQMK Bot <hello@qmk.fm>2021-02-28 21:25:41 +0000
commit93a1d4f15611d68225b1eb689b81cbd4564fb18c (patch)
tree49dbe504f06e23a53dcd732bfaf6d3d54e7ce9ba /tmk_core/make_dfu_header.sh
parent80e8e20a8965da5934f74141291c6c5d805774c6 (diff)
parentf8266a228cacbc31b0455161e0a8bd073feaa9db (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'tmk_core/make_dfu_header.sh')
-rwxr-xr-xtmk_core/make_dfu_header.sh14
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 7e2283dd70..0000000000
--- a/tmk_core/make_dfu_header.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-ALL_CONFIGS=$*
-GREP="grep"
-
-cat <<- EOF > lib/lufa/Bootloaders/DFU/Keyboard.h
-#pragma once
-
-$($GREP "MANUFACTURER[ \t]" $ALL_CONFIGS -h | tail -1)
-$($GREP "PRODUCT[ \t]" $ALL_CONFIGS -h | tail -1 | tr -d '\r') Bootloader
-$($GREP "QMK_ESC_OUTPUT[ \t]" $ALL_CONFIGS -h | tail -1)
-$($GREP "QMK_ESC_INPUT[ \t]" $ALL_CONFIGS -h | tail -1)
-$($GREP "QMK_LED[ \t]" $ALL_CONFIGS -h | tail -1)
-$($GREP "QMK_SPEAKER[ \t]" $ALL_CONFIGS -h | tail -1)
-EOF