forked from osm0sis/AnyKernel3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanykernel.sh
executable file
·67 lines (51 loc) · 1.4 KB
/
anykernel.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# AnyKernel3 Ramdisk Mod Script
# osm0sis @ xda-developers
## AnyKernel setup
# begin properties
properties() { '
kernel.string=UGHTEA by @D4rkKnight21
do.devicecheck=1
do.modules=0
do.systemless=1
do.cleanup=1
do.cleanuponabort=0
device.name1=platina
device.name2=Mi8Lite
device.name3=Mi8lite
device.name4=8lite
device.name5=Platina
supported.versions=
supported.patchlevels=
'; } # end properties
# shell variables
block=/dev/block/bootdevice/by-name/boot
is_slot_device=0;
ramdisk_compression=auto;
## AnyKernel methods (DO NOT CHANGE)
# import patching functions/variables - see for reference
. tools/ak3-core.sh;
## AnyKernel file attributes
# set permissions/ownership for included ramdisk files
chmod -R 750 $ramdisk/*;
chown -R root:root $ramdisk/*;
## AnyKernel boot install
dump_boot;
# Add skip_override parameter to cmdline so user doesn't have to reflash Magisk
if [ -d $ramdisk/.backup ]; then
ui_print " "; ui_print "Magisk detected! Patching cmdline so reflashing Magisk is not necessary...";
patch_cmdline "skip_override" "skip_override";
else
patch_cmdline "skip_override" "";
fi;
write_boot;
## end boot install
# shell variables
#block=vendor_boot;
#is_slot_device=1;
#ramdisk_compression=auto;
# reset for vendor_boot patching
#reset_ak;
## AnyKernel vendor_boot install
#split_boot; # skip unpack/repack ramdisk since we don't need vendor_ramdisk access
#flash_boot;
## end vendor_boot install