1
0
Fork 0

scriplets, flash build/release watch/dev

jebbatime v1.0.1
ml server 2021-06-12 16:04:15 -06:00
parent 29d4b48cba
commit 9ad4aff2d0
3 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#!/bin/bash
# Need to be in root dir of jebbatime git archive.
# Get config
. ~/.config/jebbatime.conf
cd $JEBBATIMEGITROOT
# Download latest release. XXX better link to latest.
rm -f /tmp/micropython.zip
wget -O /tmp/micropython.zip \
https://spacecruft.org/attachments/9238c4cc-cd29-4b95-89fe-b3246609339c
# Reboot thang into bootloader
echo "Rebooting development PineTime watch into bootloader..."
./tools/wasptool \
--verbose \
--bootloader \
--device $JEBBATIMEDEVMAC
echo "Waiting..."
sleep 4
# Flash
echo "Flashing..."
./tools/ota-dfu/dfu.py \
--legacy \
--verbose \
--address=$JEBBATIMEDEVDFUMAC \
--zip=/tmp/micropython.zip