Merge pull request #2 from flipperdevices/ll_flash_nix

add flash script for linux, to copy with assembly artefacts via CI
This commit is contained in:
SG 2021-12-03 00:01:52 +10:00 committed by GitHub
commit 933520f7a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View File

@ -90,6 +90,7 @@ jobs:
mv build/bootloader/bootloader.bin artifacts/
mv build/partition_table/partition-table.bin artifacts/
mv build/blackmagic.bin artifacts/
cp scripts/flash_nix.sh artifacts/
- name: Generate flash.command file
if: ${{ !github.event.pull_request.head.repo.fork }}

29
scripts/flash_nix.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
cd $(dirname "$0")
FLASH_COMMAND="$(cat flash.command)"
if [ -n "$1" ]; then
if [ -c "$1" ]; then
PORT="$1"
TOOL="$(echo "$FLASH_COMMAND" | sed -e 's/\s.*$//')"
ESPTOOL=`which $TOOL`
if [ -n "$ESPTOOL" ] && [ -x "$ESPTOOL" ]; then
echo "$FLASH_COMMAND" | sed -e "s|(PORT)|$PORT|g" | sh -x
exit $?
else
echo "Can't find executable $ESPTOOL"
echo
fi
else
echo "Invalid port $1"
echo
fi
fi
echo "Usage: $0 <serial_port>"
echo "Available ports:"
find /dev/tty* | grep -E "ACM|USB|\." --color=never
exit 255;