Rockbox Updater (v0.2)

Summary: Use this simple shell script to update the build of Rockbox on your DAP. Just change the variables at the top, and you should be good to go.

Requirements:

  • Linux
  • wget
  • unzip

Code:

#!/bin/bash
RBMOUNTPOINT="/media/IHP-100"
RBZIPURL="http://build.rockbox.org/dist/build-h300/rockbox.zip"  ##Filename must be rockbox.zip.
cd "${TMPDIR}"
wget "${RBZIPURL}"
cd "${RBMOUNTPOINT}/"
unzip -o "${TMPDIR}/rockbox.zip"
rm "${TMPDIR}/rockbox.zip"

Leave a Reply

Your email address will not be published. Required fields are marked *