]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
remove build stuff
authorAdam Bell <agbell@gmail.com>
Sat, 3 Jun 2017 18:32:02 +0000 (14:32 -0400)
committerAdam Bell <agbell@gmail.com>
Sat, 3 Jun 2017 18:32:02 +0000 (14:32 -0400)
avrdude [deleted file]
docker-compose.yml [deleted file]

diff --git a/avrdude b/avrdude
deleted file mode 100755 (executable)
index 293825e..0000000
--- a/avrdude
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-set -x
-BUILD_DIR=.
-TARGET=lets_split_rev2_adam.hex
-MCU=atmega32u4
-ls /dev/tty* > /tmp/1;
-echo "Reset your Pro Micro now";
-while [[ -z $USB ]]; do
-  echo "."
-  sleep 1;
-  ls /dev/tty* > /tmp/2;
-  USB=`diff /tmp/1 /tmp/2 | grep -o '/dev/tty.*'`;
-done;
-avrdude -p $MCU -c avr109 -P $USB -U flash:w:$BUILD_DIR/$TARGET
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644 (file)
index 4657e78..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-# specify keyboard / keymap / subproject (if req) and run `docker compose up`
-# will install all deps into a docker container and build firmware, cross platform
-# Only prereq is docker
-qmk:
-  build: .
-  environment:
-    keyboard: lets_split
-    keymap: adam
-    subproject: rev2
-  volumes:
-    - .:/qmk