mirror of
https://github.com/gwenhael-le-moine/x49gp.git
synced 2024-12-25 21:58:49 +01:00
[pull-roms.sh] direct download
This commit is contained in:
parent
b12cce480a
commit
e6b7f08fef
1 changed files with 4 additions and 5 deletions
|
@ -6,19 +6,18 @@ mkdir -p "$FWDIR"
|
|||
mkdir -p "$TEMPDIR"
|
||||
cd "$TEMPDIR" || exit 1
|
||||
|
||||
echo Retrieving Bootloader from hpcalc.org for HP 49g+ and HP 50g...
|
||||
echo "Retrieving Bootloader from hpcalc.org for HP 49g+ and HP 50g..."
|
||||
wget https://www.hpcalc.org/hp49/pc/rom/hp-arm-models-bootloader.zip
|
||||
unzip -j hp-arm-models-bootloader.zip -d "$TEMPDIR"
|
||||
mv ./*.bin "$FWDIR"/
|
||||
|
||||
echo Retrieving ROM 2.15 from hpcalc.org for HP 49g+ and HP 50g...
|
||||
echo "Retrieving ROM 2.15 from hpcalc.org for HP 49g+ and HP 50g..."
|
||||
wget https://www.hpcalc.org/hp49/pc/rom/hp4950v215.zip
|
||||
unzip -j hp4950v215.zip -d "$TEMPDIR"
|
||||
mv ./*.bin "$FWDIR"/
|
||||
|
||||
echo Retrieving latest Unofficial newRPL build...
|
||||
wget https://hpgcc3.org/downloads/newrplfw.bin
|
||||
mv ./newrplfw.bin "$FWDIR"/
|
||||
echo "Retrieving latest Unofficial newRPL build..."
|
||||
wget https://hpgcc3.org/downloads/newrplfw.bin -O "$FWDIR"/newrplfw.bin
|
||||
|
||||
cd "$CWD" || exit 1
|
||||
rm -rf "$TEMPDIR"
|
||||
|
|
Loading…
Reference in a new issue