![]() |
enable developer mode directly from the leappad - Printable Version +- Spiffy Hacks (https://spiffyhacks.harmonypogo.com) +-- Forum: LeapFrog LeapPad (https://spiffyhacks.harmonypogo.com/forum-7.html) +--- Forum: LeapPad 3 (https://spiffyhacks.harmonypogo.com/forum-26.html) +--- Thread: enable developer mode directly from the leappad (/thread-1630.html) |
enable developer mode directly from the leappad - LucP - 12-26-2019 First I would like to thank "Deak Phreak" and "Joshtech" for all the great information on spiffyhacks. I found myself constantly enabling and disabling developer mode for various reasons and I wanted to save some time so I created this script. It will enable developer mode by holding the "up" arrow when booting the leappad. It will disable developer mode by holding the "down" arrow when booting the leappad. (in case I forgot to rm /flags/developer) I also included a feature to reinstall backed up games after connecting with wifi, by holding the "right" arrow. in /etc/init.d create a file called "devmode" Code: #!/bin/sh modify the file /etc/init.d/rcS by adding the following line at the very end of the file. Code: nice /etc/init.d/devmode start; to reinstall backed up games after connecting with wifi by holding the right arrow, create a file in "/" called "install.sh" and chmod 755 the file. In this file, simply lfpkg2 each directory that is needed for the backed up games. (as it appears they are only removed from the database and not the file system) example: Code: lfpkg2 /LF/Bulk/ProgramFiles/MULT-0x002D001A-000302/meta.inf That is it. I hope people will find this useful. |