Skip to content

Commit

Permalink
init.d setting should be preserved
Browse files Browse the repository at this point in the history
  • Loading branch information
xNUTx committed Feb 23, 2016
1 parent 19573e2 commit 15ad544
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/upload.sh
Expand Up @@ -12,7 +12,7 @@ uploadfiles() {
echo "Put the uploaded files online? (y/n)"
read answer
if [ "$answer" = "y" -o "$answer" = "Y" ]; then
wget -O /dev/null "http://nut.xperia-files.com/?a=import&major=${MAJOR}&minor=${MINOR}&revision=${REVISION}&releasetype=${RELEASE}&folderid=WFpEdWFsUmVjb3Zlcnk="
wget -O /dev/null "http://nut.xperia-files.com/feature/major/${MAJOR}/minor/${MINOR}/revision/${REVISION}/releasetype/${RELEASE}/import.html"
fi
echo "press enter to return to the Action menu!"
read
Expand Down
6 changes: 4 additions & 2 deletions src/installrecovery.sh
Expand Up @@ -317,8 +317,10 @@ DRSETPROP dr.release.type $(DRGETPROP release)

echo "dr.recovery.boot will be set to TWRP (default)"
DRSETPROP dr.recovery.boot twrp
echo "dr.initd.active will be set to false (default)"
DRSETPROP dr.initd.active false
if [ "$(DRGETPROP dr.initd.active)" != "true" ]; then
echo "dr.initd.active will be set to false (default)"
DRSETPROP dr.initd.active false
fi
echo "dr.ramdisk.boot will be set to false (default)"
DRSETPROP dr.ramdisk.boot false

Expand Down

0 comments on commit 15ad544

Please sign in to comment.