mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
5 lines
165 B
Bash
Executable file
5 lines
165 B
Bash
Executable file
#!/bin/sh
|
|
unzip $1 rockbox.bin
|
|
dd if=bootloader-x3.bin of=rockbox.bin bs=2048 seek=4 conv=nocreat conv=notrunc
|
|
zip -o $1 rockbox.bin rockbox-info.txt
|
|
rm rockbox.bin
|