Magisk/scripts/flash_script.sh

147 lines
3.7 KiB
Bash
Raw Normal View History

#MAGISK
2016-09-14 02:31:13 +00:00
##########################################################################################
#
2017-06-03 12:19:01 +00:00
# Magisk Flash Script
2016-09-14 02:31:13 +00:00
# by topjohnwu
2017-07-24 18:02:19 +00:00
#
2017-06-03 12:19:01 +00:00
# This script will detect, construct the environment for Magisk
# It will then call boot_patch.sh to patch the boot image
2016-09-14 02:31:13 +00:00
#
##########################################################################################
2017-07-09 16:17:34 +00:00
##########################################################################################
# Preparation
##########################################################################################
2017-03-12 10:13:58 +00:00
# This path should work in any cases
TMPDIR=/dev/tmp
2016-09-14 02:31:13 +00:00
2017-07-09 16:17:34 +00:00
INSTALLER=$TMPDIR/install
2017-03-15 11:32:25 +00:00
COMMONDIR=$INSTALLER/common
2017-10-31 09:05:24 +00:00
APK=$COMMONDIR/magisk.apk
2016-11-28 20:16:01 +00:00
CHROMEDIR=$INSTALLER/chromeos
2016-11-13 08:58:43 +00:00
# Default permissions
umask 022
2016-09-14 02:31:13 +00:00
OUTFD=$2
ZIP=$3
2017-09-15 19:48:58 +00:00
if [ ! -f $COMMONDIR/util_functions.sh ]; then
2017-06-24 14:38:20 +00:00
echo "! Unable to extract zip file!"
exit 1
fi
2017-07-09 16:17:34 +00:00
# Load utility fuctions
2017-06-18 16:15:44 +00:00
. $COMMONDIR/util_functions.sh
2017-07-09 16:17:34 +00:00
get_outfd
##########################################################################################
# Detection
##########################################################################################
2017-04-21 23:05:10 +00:00
ui_print "************************"
2017-07-30 19:03:52 +00:00
ui_print "* Magisk v$MAGISK_VER Installer"
2017-04-21 23:05:10 +00:00
ui_print "************************"
2016-09-14 02:31:13 +00:00
2017-09-26 12:21:43 +00:00
is_mounted /data || mount /data || is_mounted /cache || mount /cache || abort "! Unable to mount partitions"
2017-09-12 20:07:25 +00:00
mount_partitions
2017-06-10 17:40:08 +00:00
2018-06-17 09:59:24 +00:00
find_boot_image
find_dtbo_image
get_flags
2016-09-14 02:31:13 +00:00
[ -z $BOOTIMAGE ] && abort "! Unable to detect boot image"
ui_print "- Found boot/ramdisk image: $BOOTIMAGE"
[ -z $DTBOIMAGE ] || ui_print "- Found dtbo image: $DTBOIMAGE"
2017-07-02 13:36:09 +00:00
# Detect version and architecture
api_level_arch_detect
2016-10-02 20:34:50 +00:00
[ $API -lt 21 ] && abort "! Magisk is only for Android higher than Lollipop (5.0+) (SDK 21+)"
2016-10-29 22:13:59 +00:00
ui_print "- Device platform: $ARCH"
2018-04-22 06:13:27 +00:00
BINDIR=$INSTALLER/$ARCH32
2017-03-12 11:22:15 +00:00
chmod -R 755 $CHROMEDIR $BINDIR
2016-10-29 22:13:59 +00:00
# Check if system root is installed and remove
remove_system_su
2016-11-13 08:58:43 +00:00
##########################################################################################
# Environment
##########################################################################################
2017-04-21 23:05:10 +00:00
ui_print "- Constructing environment"
2017-07-24 18:02:19 +00:00
DATA=false
DATA_DE=false
if grep ' /data ' /proc/mounts | grep -vq 'tmpfs'; then
# Test if data is writable
touch /data/.rw && rm /data/.rw && DATA=true
# Test if DE storage is writable
$DATA && [ -d /data/adb ] && touch /data/adb/.rw && rm /data/adb/.rw && DATA_DE=true
fi
2017-12-15 18:02:17 +00:00
if $DATA; then
MAGISKBIN=/data/magisk
$DATA_DE && MAGISKBIN=/data/adb/magisk
2018-01-01 08:46:28 +00:00
run_migrations
2017-12-15 18:02:17 +00:00
else
MAGISKBIN=/cache/data_bin
fi
2017-04-21 23:05:10 +00:00
# Copy required files
rm -rf $MAGISKBIN/* 2>/dev/null
mkdir -p $MAGISKBIN 2>/dev/null
2017-09-05 13:44:22 +00:00
cp -af $BINDIR/. $COMMONDIR/. $CHROMEDIR $TMPDIR/bin/busybox $MAGISKBIN
2017-04-21 23:05:10 +00:00
chmod -R 755 $MAGISKBIN
2017-02-04 10:44:07 +00:00
2017-06-18 16:15:44 +00:00
# addon.d
if [ -d /system/addon.d ]; then
ui_print "- Adding addon.d survival script"
mount -o rw,remount /system
2018-04-22 06:13:27 +00:00
cp -af $INSTALLER/common/99-magisk.sh /system/addon.d/99-magisk.sh
2017-06-18 16:15:44 +00:00
chmod 755 /system/addon.d/99-magisk.sh
fi
$BOOTMODE || recovery_actions
2017-04-17 08:36:49 +00:00
2017-03-12 10:13:58 +00:00
##########################################################################################
2017-09-05 13:44:22 +00:00
# Boot patching
2017-03-12 10:13:58 +00:00
##########################################################################################
2017-10-31 09:05:24 +00:00
eval $BOOTSIGNER -verify < $BOOTIMAGE && BOOTSIGNED=true
$BOOTSIGNED && ui_print "- Boot image is signed with AVB 1.0"
2017-03-12 10:13:58 +00:00
2017-06-03 12:19:01 +00:00
SOURCEDMODE=true
cd $MAGISKBIN
2017-02-04 10:44:07 +00:00
2017-06-03 12:19:01 +00:00
# Source the boot patcher
2017-06-10 17:40:08 +00:00
. $COMMONDIR/boot_patch.sh "$BOOTIMAGE"
2017-03-12 10:13:58 +00:00
2017-11-10 17:33:50 +00:00
flash_boot_image new-boot.img "$BOOTIMAGE"
rm -f new-boot.img
if [ -f stock_boot* ]; then
rm -f /data/stock_boot* 2>/dev/null
$DATA && mv stock_boot* /data
fi
2017-03-12 10:13:58 +00:00
$KEEPVERITY || patch_dtbo_image
2017-11-10 17:33:50 +00:00
if [ -f stock_dtbo* ]; then
rm -f /data/stock_dtbo* 2>/dev/null
$DATA && mv stock_dtbo* /data
2017-11-10 17:33:50 +00:00
fi
2016-09-14 02:31:13 +00:00
2017-01-01 18:00:53 +00:00
cd /
2017-09-05 13:44:22 +00:00
# Cleanups
$BOOTMODE || recovery_cleanup
rm -rf $TMPDIR
2017-07-30 19:03:52 +00:00
2016-09-14 02:31:13 +00:00
ui_print "- Done"
exit 0