-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathanykernel.sh
More file actions
executable file
·50 lines (36 loc) · 984 Bytes
/
anykernel.sh
File metadata and controls
executable file
·50 lines (36 loc) · 984 Bytes
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
# AnyKernel2 Ramdisk Mod Script
# osm0sis @ xda-developers
## AnyKernel setup
# begin properties
properties() { '
kernel.string=RenderZenith by RenderBroken and joshuous
do.devicecheck=1
do.modules=0
do.cleanup=1
do.cleanuponabort=0
device.name1=OnePlus5T
device.name2=dumpling
device.name3=OnePlus5
device.name4=cheeseburger
device.name5=
supported.versions=9
'; } # 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
. /tmp/anykernel/tools/ak2-core.sh;
## AnyKernel file attributes
# set permissions/ownership for included ramdisk files
chmod -R 750 $ramdisk/*;
chown -R root:root $ramdisk/*;
## AnyKernel install
dump_boot;
# begin ramdisk changes
# Remove recovery service so that TWRP isn't overwritten
remove_section init.rc "service flash_recovery" ""
# end ramdisk changes
write_boot;
## end install