keyboards/zofle/flash.fish

33 lines
797 B
Fish
Raw Normal View History

2021-11-08 23:20:01 -06:00
#!/usr/bin/env fish
test (whoami) != root && begin
echo must be root
exit 1
end
set flash_target /dev/disk/by-label/NICENANO
set firmware_file $argv[1]
mkdir -p /tmp/flashmnt
while not test -L $flash_target
2022-01-14 10:03:25 -06:00
echo Waiting for mountable device $flash_target to become available to flash $firmware_file...
2023-11-14 09:41:59 -06:00
echo ' This usually means you need to plugin the board and reset it.'
echo ' This is done by plugging in the board and double-tapping the'
echo ' reset button with the nice!nano controllers this build uses.'
2021-11-08 23:20:01 -06:00
sleep 1
end
echo Mounting $flash_target to /tmp/flashmnt...
mount $flash_target /tmp/flashmnt
echo Copying $firmware_file to /tmp/flashmnt...
cp $firmware_file /tmp/flashmnt
echo Syncing...
sync
echo Unmounting /tmp/flashmnt...
umount -R /tmp/flashmnt
echo Done!