diff options
author | Keith Packard <keithp@keithp.com> | 2015-06-18 17:12:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-06-18 17:12:41 -0700 |
commit | 6cf27ddd5e84824610d6a0bcbb81ba4626b71409 (patch) | |
tree | af47dcc31987a1a6c56a17b9acd49ed1beb5a82a /ao-bringup | |
parent | 3e5521070564e9a184f3b781dad9d39cdd963510 (diff) |
ao-bringup: Use local versions of tools instead of /usr/bin for turnon_easymega
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-bringup')
-rwxr-xr-x | ao-bringup/turnon_easymega | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ao-bringup/turnon_easymega b/ao-bringup/turnon_easymega index 632b71e2..01546537 100755 --- a/ao-bringup/turnon_easymega +++ b/ao-bringup/turnon_easymega @@ -1,14 +1,14 @@ #!/bin/sh -if [ -x /usr/bin/ao-flash-stm ]; then - STMLOAD=/usr/bin/ao-flash-stm +if [ -x ../ao-tools/ao-flash/ao-flash-stm ]; then + STMLOAD=../ao-tools/ao-flash/ao-flash-stm else echo "Can't find ao-flash-stm! Aborting." exit 1 fi -if [ -x /usr/bin/ao-usbload ]; then - USBLOAD=/usr/bin/ao-usbload +if [ -x ../ao-tools/ao-usbload/ao-usbload ]; then + USBLOAD=../ao-tools/ao-usbload/ao-usbload else echo "Can't find ao-usbload! Aborting." exit 1 |