rhino889a, why did you edit your posts down to nothing?
:dontknow:, but posts have been restored.
Thanks!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
rhino889a, why did you edit your posts down to nothing?
That is correct. Boot buddy will try to run any file in its folder (and any file extension). You have to move scripts out of the folder to stop them from running.NOTE
it seems that adding .bak to your scripts in your bootbuddy_scripts folder DOES NOT stop it from being executed. Just so you need to be careful
[ -n $EXTERNAL_ADD_STORAGE ] && EXTERNAL_STORAGE=$EXTERNAL_ADD_STORAGE
EXTERNAL_STORAGE="/mnt/external/sdcard"
The installer attempts to automatically find the sdcard location using this line
Basically saying- Use whatever is listed in $EXTERNAL_STORAGE, but if $EXTERNAL_ADD_STORAGE is set, use that instead.Code:[ -n $EXTERNAL_ADD_STORAGE ] && EXTERNAL_STORAGE=$EXTERNAL_ADD_STORAGE
Unfortunately, a lot of devices have some tricky or unknown ways to identify the sdcard. The install script could be modified and replace the above line with this
Change "/mnt/external/sdcard" to the mount location of your real sdcard, and the install may run just fine on any device.Code:EXTERNAL_STORAGE="/mnt/external/sdcard"
Rhino889a and DNRDustin know enough to get it set up.
EXTERNAL_STORAGE="/storage/external_SD"