Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7275a19b authored by Steven Moreland's avatar Steven Moreland
Browse files

envsetup: syswrite - wait after rooting

adb root sometimes takes a second, and the next command
will fail.

Bug: N/A
Test: syswrite on device which isn't already rooted
Change-Id: I91754c31c74bf0589ea8cbae77c10e5a120bdce5
parent 42bc8b98
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -1096,12 +1096,12 @@ function qpid() {
#
#
# Easy way to make system.img/etc writable
# Easy way to make system.img/etc writable
function syswrite() {
function syswrite() {
  adb wait-for-device && adb root || return 1
  adb wait-for-device && adb root && adb wait-for-device || return 1
  if [[ $(adb disable-verity | grep -i "reboot") ]]; then
  if [[ $(adb disable-verity | grep -i "reboot") ]]; then
      echo "rebooting"
      echo "rebooting"
      adb reboot && adb wait-for-device && adb root || return 1
      adb reboot && adb wait-for-device && adb root && adb wait-for-device || return 1
  fi
  fi
  adb wait-for-device && adb remount || return 1
  adb remount || return 1
}
}


# coredump_setup - enable core dumps globally for any process
# coredump_setup - enable core dumps globally for any process