forked from osm0sis/AnyKernel3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anykernel.sh
executable file
·68 lines (57 loc) · 1.49 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
67
68
# AnyKernel3 Ramdisk Mod Script
# osm0sis @ xda-developers
## AnyKernel setup
# begin properties
properties() { '
kernel.string=Mi8937 Kernel 4.9
do.devicecheck=1
do.modules=0
do.systemless=1
do.cleanup=1
do.cleanuponabort=0
device.name1=mi8937
device.name2=land
device.name3=landtoni
device.name4=riva
device.name5=rolex
device.name6=rova
device.name7=santoni
device.name8=ugg
device.name9=ugglite
device.name10=ulysse
device.name11=prada
supported.versions=8.1.0 - 12
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
set_perm_recursive 0 0 755 644 $ramdisk/*;
set_perm_recursive 0 0 750 750 $ramdisk/init* $ramdisk/sbin;
## AnyKernel install
dump_boot;
patch_cmdline androidboot.usbconfigfs androidboot.usbconfigfs=true
write_boot;
## end install
# Check for 4.9 support
umount /vendor
mount -o ro /dev/block/bootdevice/by-name/cust /vendor
if [ -f /vendor/build.prop ]; then
if [ -f /vendor/etc/vintf/manifest.xml ] ; then
grep "target-level=\"2\"" /vendor/etc/vintf/manifest.xml
elif [ -f /vendor/manifest.xml ] ; then
grep "target-level=\"2\"" /vendor/manifest.xml
else
false
fi
if [ $? -eq 0 ]; then
ui_print "WARNING: Your vendor doesn't seems like supporting kernel 4.9."
fi
fi
umount /vendor