A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

fwpatcher: fix a few issues with the mksums.pl script

First, the way it was invoking mkboot was no longer correct so it
was not producing files used in the later commands.

Second, support for the H300 1.31k firmware was added sometime ago
but not to this script.

Change-Id: I0e9c74a3b9f83ade8d01df0bebfe06f4d3b92ce4

+2 -2
+2 -2
tools/fwpatcher/mksums.pl
··· 39 if($model < 300) { 40 foreach("1.63eu","1.63k", "1.63us", "1.65eu","1.65k", "1.65us", 41 "1.66eu", "1.66k", "1.66us", "1.66jp") { 42 - `../mkboot $orig_path/h1xx/$_/ihp_$model.bin bootloader-h$model.bin ihp_$model.bin`; 43 `../scramble -iriver ihp_$model.bin ihp_$model.hex`; 44 $origsum = `md5sum $orig_path/h1xx/$_/ihp_$model.hex`; 45 chomp $origsum; ··· 52 } 53 } else { 54 foreach("1.28eu", "1.28k", "1.28jp", "1.29eu", "1.29k", "1.29jp", 55 - "1.30eu") { 56 `../mkboot -h300 $orig_path/h3xx/$_/H$model.bin bootloader-h$model.bin H$model.bin`; 57 `../scramble -iriver H$model.bin H$model.hex`; 58 $origsum = `md5sum $orig_path/h3xx/$_/H$model.hex`;
··· 39 if($model < 300) { 40 foreach("1.63eu","1.63k", "1.63us", "1.65eu","1.65k", "1.65us", 41 "1.66eu", "1.66k", "1.66us", "1.66jp") { 42 + `../mkboot -h100 $orig_path/h1xx/$_/ihp_$model.bin bootloader-h$model.bin ihp_$model.bin`; 43 `../scramble -iriver ihp_$model.bin ihp_$model.hex`; 44 $origsum = `md5sum $orig_path/h1xx/$_/ihp_$model.hex`; 45 chomp $origsum; ··· 52 } 53 } else { 54 foreach("1.28eu", "1.28k", "1.28jp", "1.29eu", "1.29k", "1.29jp", 55 + "1.30eu", "1.31k") { 56 `../mkboot -h300 $orig_path/h3xx/$_/H$model.bin bootloader-h$model.bin H$model.bin`; 57 `../scramble -iriver H$model.bin H$model.hex`; 58 $origsum = `md5sum $orig_path/h3xx/$_/H$model.hex`;