Advertisement
Guest User

RockboxWrtJffsInst.sh

a guest
Sep 21st, 2012
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.22 KB | None | 0 0
  1.  
  2. # How to use Rockbox on an SD card from Slug's openwrt on the jffs.
  3. #
  4. # 0.  Get openwrt on your jffs (the latest flashstock is good for that).
  5. # 1.  Unzip rockbox-wrt-r3.9.1.tgz onto your SD card.
  6. # 2.  Unzip rocks-wrt-r3.9.1.tgz onto your SD card (plugins are fun).
  7. # 3.  Put this script file somewhere on the SD card.
  8. # 3.  Put some music files on the SD card.
  9. # 4.  Boot the zipit from the openwrt on the jffs.
  10. # 5.  Insert the SD card.
  11. # 6.  Open the Bash prompt.
  12. # 7.  Run this script.
  13. # 8.  Exit the Bash prompt.
  14. # 9.  Run the Rockbox icon on the gmenu2x applications screen.  Enjoy.  
  15.  
  16. cd /usr/local/bin
  17. ln -s /mnt/mmcblk0p1/usr/local/bin/rockbox rockbox
  18. ln -s /mnt/mmcblk0p1/usr/local/bin/rockbox.bin rockbox.bin
  19.  
  20. mkdir -p /usr/local/lib
  21. cd /usr/local/lib
  22. ln -s /mnt/mmcblk0p1/usr/local/lib/rockbox rockbox
  23.  
  24. mkdir -p /usr/local/share
  25. cd /usr/local/share
  26. ln -s /mnt/mmcblk0p1/usr/local/share/rockbox rockbox
  27.  
  28. cd ~/.config
  29. cp -R /mnt/mmcblk0p1/root/.config/rockbox.org .
  30.  
  31. cd /usr/share/gmenu2x/sections/applications/rockbox
  32. cp /mnt/mmcblk0p1/usr/share/gmenu2x/sections/applications/rockbox .
  33.  
  34. cd /usr/share/gmenu2x/skins/Default/icons
  35. cp /mnt/mmcblk0p1/usr/share/gmenu2x/skins/Default/icons/rockbox.png .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement