Created
November 8, 2024 15:20
-
-
Save MRDGH2821/d11a8b4337f51c6d774760ee0e743055 to your computer and use it in GitHub Desktop.
Firmware updater script for StarLite MK V tablet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
FIRMWARE_VERSION=24.09 | |
rm $FIRMWARE_VERSION.rom | |
wget https://github.com/StarLabsLtd/firmware/raw/main/StarLite/MkV/coreboot/$FIRMWARE_VERSION/$FIRMWARE_VERSION.rom | |
sudo flashrom -p internal -w $FIRMWARE_VERSION.rom -i bios --ifd -n -N | |
echo "Firmware is flashed, please shutdown" | |
# sudo shutdown now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment