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

Verified Commit 4cf80f12 authored by Frank Preel's avatar Frank Preel Committed by Nicolas Gelot
Browse files
parent f0b4f1be
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
#!/bin/bash

# Copyright (C) 2020 - Author: Ingo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.

# TODO: What if 2 devices detected?
# Parameter
# $1: The folder where fastboot runnable is stored

# Exit status
# - 0 : Device in fastboot mode detected and bootloader unlocked
# - 1 : Error

FASTBOOT_FOLDER_PATH=$1
FASTBOOT_PATH=${FASTBOOT_FOLDER_PATH}"fastboot"

echo "fastboot path: $FASTBOOT_PATH"

while [ "$($FASTBOOT_PATH getvar unlocked 2>&1 | grep -q "unlocked: no"; echo $?)" = 1 ]
do
  sleep 2
done

#sleep 5
echo "fastboot mode detected, phone is unlocked"
+37 −0
Original line number Diff line number Diff line
#!/bin/bash

# Copyright (C) 2022 ECORP SAS - Author: merothh
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.

# TODO: What if 2 devices detected?
# Parameter
# $1: The folder where fastboot runnable is stored

# Exit status
# - 0 : Device in fastboot mode detected and bootloader critically unlocked
# - 1 : Error

FASTBOOT_FOLDER_PATH=$1
FASTBOOT_PATH=${FASTBOOT_FOLDER_PATH}"fastboot"

echo "fastboot path: $FASTBOOT_PATH"

while [ "$($FASTBOOT_PATH oem device-info 2>&1 | grep -q "critical unlocked: true"; echo $?)" = 1 ]
do
  sleep 2
done

#sleep 5
echo "fastboot mode detected, phone is critically unlocked"
+40 −0
Original line number Diff line number Diff line
:: Copyright (C) 2020 - Author: Ingo
:: Copyright (C) 2020 ECORP SAS - Author: Vincent Bourgmayer
::
:: This program is free software: you can redistribute it and/or modify
:: it under the terms of the GNU General Public License as published by
:: the Free Software Foundation, either version 3 of the License, or
:: (at your option) any later version.
::
:: This program is distributed in the hope that it will be useful,
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
:: GNU General Public License for more details.
::
:: You should have received a copy of the GNU General Public License
:: along with this program.  If not, see <https://www.gnu.org/licenses/>.

:: TODO: What if 2 devices detected?
:: $1: The folder where fastboot runnable is stored

:: Exit status
:: - 0 : Device in fastboot mode detected
:: - 1 : Error

set FASTBOOT_FOLDER_PATH=%~1
set FASTBOOT_PATH="%FASTBOOT_FOLDER_PATH%fastboot"
echo "FASTBOOT path:"%FASTBOOT_PATH%

:fastboot_detect
%FASTBOOT_PATH% getvar unlocked 2>&1 | findstr /c:"unlocked: no"
if errorLevel 1 (
	waitfor /t 2 pause 2>nul
	goto :fastboot_detect
) 

call fastboot_detect

:: waitfor /t 5 pause 2>nul
echo "fastboot mode detected, phone is unlocked"

exit /b 0
+40 −0
Original line number Diff line number Diff line
:: Copyright (C) 2020 - Author: Ingo
:: Copyright (C) 2020 ECORP SAS - Author: Vincent Bourgmayer
::
:: This program is free software: you can redistribute it and/or modify
:: it under the terms of the GNU General Public License as published by
:: the Free Software Foundation, either version 3 of the License, or
:: (at your option) any later version.
::
:: This program is distributed in the hope that it will be useful,
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
:: GNU General Public License for more details.
::
:: You should have received a copy of the GNU General Public License
:: along with this program.  If not, see <https://www.gnu.org/licenses/>.

:: TODO: What if 2 devices detected?
:: $1: The folder where fastboot runnable is stored

:: Exit status
:: - 0 : Device in fastboot mode detected
:: - 1 : Error

set FASTBOOT_FOLDER_PATH=%~1
set FASTBOOT_PATH="%FASTBOOT_FOLDER_PATH%fastboot"
echo "FASTBOOT path:"%FASTBOOT_PATH%

:fastboot_detect
%FASTBOOT_PATH% oem device-info 2>&1 | findstr /c:"critical unlocked: true"
if errorLevel 1 (
	waitfor /t 2 pause 2>nul
	goto :fastboot_detect
) 

call fastboot_detect

:: waitfor /t 5 pause 2>nul
echo "fastboot mode detected, phone is critically unlocked"

exit /b 0
−27.3 KiB
Loading image diff...
Loading