Browse Source

Start removing select Linux-isms

bash might not be in /bin. Don't expect it there.
capsense
Dan McGregor 8 years ago
parent
commit
0e6f107ea1

+ 1
- 1
Bootloader/Scripts/easyMode.bash View File

#!/bin/bash
#!/usr/bin/env bash


# Just in case there was an extra ledTest.bash (don't care if error) # Just in case there was an extra ledTest.bash (don't care if error)
rm /dev/ttyACM0 rm /dev/ttyACM0

+ 1
- 1
Bootloader/Scripts/generateManufacturingImage.bash View File

#!/bin/bash
#!/usr/bin/env bash
# Combines a given bootloader image and firmware image into a single firmware binary # Combines a given bootloader image and firmware image into a single firmware binary
# Manufacturing deliverable # Manufacturing deliverable



+ 1
- 1
Bootloader/Scripts/ledTest.bash View File

#!/bin/bash
#!/usr/bin/env bash


printf "led\r" > /dev/ttyACM0 printf "led\r" > /dev/ttyACM0



+ 1
- 1
Bootloader/Scripts/swdLoad.bash View File

#!/bin/bash
#!/usr/bin/env bash
# Loads firmware image using an SWD Flasher # Loads firmware image using an SWD Flasher
# Uses MCHCK ruby flasher toolchain # Uses MCHCK ruby flasher toolchain
# NOTE: Only tested with a buspirate on Linux # NOTE: Only tested with a buspirate on Linux

+ 1
- 1
Keyboards/cmake.bash View File

#!/bin/bash
#!/usr/bin/env bash
# This is bash lib file for the convenience build scripts # This is bash lib file for the convenience build scripts
# Don't call this script directly # Don't call this script directly
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
Keyboards/ergodox.bash View File

#!/bin/bash
#!/usr/bin/env bash
# This is a build script template # This is a build script template
# These build scripts are just a convenience for configuring your keyboard (less daunting than CMake) # These build scripts are just a convenience for configuring your keyboard (less daunting than CMake)
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
Keyboards/infinity.bash View File

#!/bin/bash
#!/usr/bin/env bash
# This is a build script template # This is a build script template
# These build scripts are just a convenience for configuring your keyboard (less daunting than CMake) # These build scripts are just a convenience for configuring your keyboard (less daunting than CMake)
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
Keyboards/template.bash View File

#!/bin/bash
#!/usr/bin/env bash
# This is a build script template # This is a build script template
# These build scripts are just a convenience for configuring your keyboard (less daunting than CMake) # These build scripts are just a convenience for configuring your keyboard (less daunting than CMake)
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
Keyboards/whitefox.bash View File

#!/bin/bash
#!/usr/bin/env bash
# This is a build script template # This is a build script template
# These build scripts are just a convenience for configuring your keyboard (less daunting than CMake) # These build scripts are just a convenience for configuring your keyboard (less daunting than CMake)
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
Lib/CMake/sizeCalculator View File

#!/bin/bash
#!/usr/bin/env bash
#| Jacob Alexander 2014 #| Jacob Alexander 2014
#| Arg List #| Arg List
#| 1 - size binary (e.g. avr-size) #| 1 - size binary (e.g. avr-size)

+ 1
- 1
Lib/CMake/writer View File

#!/bin/bash
#!/usr/bin/env bash
#| Jacob Alexander 2014 #| Jacob Alexander 2014
#| Arg List #| Arg List
#| 1 - File to write to (e.g. final_chip) #| 1 - File to write to (e.g. final_chip)

+ 1
- 1
LoadFile/load.dfu View File

#!/bin/bash
#!/usr/bin/env bash
# Convenience script for loading firmware onto a dfu type device # Convenience script for loading firmware onto a dfu type device
# By default, initiates dfu-util # By default, initiates dfu-util



+ 1
- 1
LoadFile/load.teensy View File

#!/bin/bash
#!/usr/bin/env bash
# Convenience script for loading firmware onto a teensy type device # Convenience script for loading firmware onto a teensy type device
# By default, initiates teensy-load-cli # By default, initiates teensy-load-cli



+ 1
- 1
LoadFile/winload.teensy View File

#!/bin/bash
#!/usr/bin/env bash
# Convenience script for loading firmware onto a teensy type device # Convenience script for loading firmware onto a teensy type device
# By default, initiates teensy-load-cli # By default, initiates teensy-load-cli



+ 1
- 1
Scan/ISSILed/exampleAPI.bash View File

#!/bin/bash
#!/usr/bin/env bash
# ISSILed # ISSILed
# Virtual Serial Port API Example # Virtual Serial Port API Example
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
Scan/STLcd/exampleAPI.bash View File

#!/bin/bash
#!/usr/bin/env bash
# STLcd # STLcd
# Virtual Serial Port API Example # Virtual Serial Port API Example
# Jacob Alexander 2015 # Jacob Alexander 2015

+ 1
- 1
buildall.bash View File

#!/bin/bash
#!/usr/bin/env bash
###| Builder Script |### ###| Builder Script |###
# #
# Builds all permutations of modules # Builds all permutations of modules