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

ypr0 - ypr1: dynamically move rockbox executable

This trivial patch wants to exploit /tmp filesystem to place
Rockbox executable. Why that? It will be then possible to
easily unlock & umount the storage partition, in order to provide
Rockbox itself a mean for RAW storage access. In turn, this will
allow a Rockbox-handled USB Mass Storage support, as well as other
goodies (storage info is one I can think of).

It takes way less than a second so it doesn't hurt boot time.
Moreover, YPR0/YPR1 targets have plenty (64MB) of RAM, so
the humble half meg executable won't hurt at all.

Change-Id: Ibc9d9a40712e924c8e19cfd7c62189b182f0401a

authored by

Lorenzo Miori and committed by
Solomon Peachy
2dd6633d 3016d74c

+7
+7
utils/ypr0tools/rockbox.sh
··· 64 64 mount --bind /mnt/media0/Playlists /Playlists 65 65 66 66 MAINFILE="/mnt/media0/.rockbox/rockbox" 67 + # Attempt to copy the executable in the /tmp directory 68 + # This allows an easier USB Mass Storage Mode to be achieved (file handles) 69 + cp $MAINFILE /tmp/rockbox 70 + if [ $? -eq 0 ] 71 + then 72 + MAINFILE="/tmp/rockbox" 73 + fi 67 74 MAINFILE_ARGV='' 68 75 MAINFILE_REDIRECT='>/dev/null 2>&1'