-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanykernel.sh
More file actions
103 lines (85 loc) · 2.07 KB
/
anykernel.sh
File metadata and controls
103 lines (85 loc) · 2.07 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# AnyKernel3 Ramdisk Mod Script
# osm0sis @ xda-developers
## AnyKernel setup
# begin properties
properties() { '
do.devicecheck=1
do.modules=0
do.systemless=1
do.cleanup=1
do.cleanuponabort=0
device.name1=alioth
device.name2=aliothin
device.name3=
device.name4=
device.name5=
supported.versions=
'; } # end properties
# shell variables
block=/dev/block/bootdevice/by-name/boot;
is_slot_device=1;
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
set_perm_recursive 0 0 750 750 $ramdisk/*;
# Auto‑detect variant from zip name
case "$ZIPFILE" in
*-5k*) v=5k;;
*z0kernel*) v=default;;
esac
# If none are detected (adb sideload), let the user pick
if [ -z "$v" ]; then
set -- 5k default
i=1; n=$#
prev_option=""
ui_print "Select DTBO variant:"
while :; do
eval "current_option=\${$i}"
# Only print when the option changes
if [ "$current_option" != "$prev_option" ]; then
ui_print "> Option selected: $current_option (Vol–=Next Vol+=Select)"
prev_option="$current_option"
fi
ev=$(getevent -lc1 2>/dev/null | tr -d '\r')
case $ev in
*KEY_VOLUMEDOWN*DOWN*)
i=$(( i % n + 1 ))
;;
*KEY_VOLUMEUP*DOWN*)
v="$current_option"
break
;;
esac
sleep 0.1
done
fi
# Select default if still unset
[ -z "$v" ] && v=default
# Apply the right dtbo
ui_print " • Using $v DTBO"
if [ "$v" != default ]; then
rm -f dtbo.img && mv "$v/dtbo.img" "dtbo.img"
fi
## AnyKernel install
dump_boot;
# Begin Ramdisk Changes
# migrate from /overlay to /overlay.d to enable SAR Magisk
if [ -d $ramdisk/overlay ]; then
rm -rf $ramdisk/overlay;
fi;
write_boot;
## end install
## vendor_boot shell variables
block=/dev/block/bootdevice/by-name/vendor_boot;
is_slot_device=1;
ramdisk_compression=auto;
patch_vbmeta_flag=auto;
# reset for vendor_boot patching
reset_ak;
# vendor_boot install
dump_boot;
write_boot;
## end vendor_boot install