-
Notifications
You must be signed in to change notification settings - Fork 0
/
recovery.rc
106 lines (78 loc) · 2.52 KB
/
recovery.rc
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
104
105
106
on early-init
start ueventd
on init
export PATH /sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin
export LD_LIBRARY_PATH /vendor/lib:/system/lib
export ANDROID_ROOT /system
export ANDROID_DATA /data
export EXTERNAL_STORAGE /sdcard
symlink /system/etc /etc
mkdir /sd-ext
mkdir /sdcard
mkdir /system
mkdir /data
mkdir /cache
mkdir /tmp
mkdir /dbdata
mkdir /mnt 0775 root root
#mount /tmp /tmp tmpfs
on early-fs
# rfs drivers
insmod fsr.ko
insmod fsr_stl.ko
insmod rfs_glue.ko
insmod rfs_fat.ko
insmod sec_param.ko
on fs
mount tmpfs tmpfs /tmp
mount rfs /dev/stl9 /system check=no
mount rfs /dev/stl9 /system rw remount
# system/userdata is moved to 'on emmc' and 'on nand' sections
mount ext4 /dev/block/stl11 /data wait nosuid nodev noatime nodiratime noauto_da_alloc
mount rfs /dev/stl11 /data nosuid nodev check=no
#exec /system/bin/sh /sbin/ram.data
chown system system /data
chmod 0771 /data
# /cache
mount ext4 /dev/block/stl10 /cache wait nosuid nodev noatime nodiratime noauto_da_alloc
mount rfs /dev/stl10 /cache nosuid nodev
# /system rw first to give the filesystem a chance to save a checkpoint
mount ext4 /dev/block/stl9 /system rw remount wait noatime nodiratime noauto_da_alloc
mount rfs /dev/stl9 /system rw remount ckeck=no
on post-fs
write /proc/sys/kernel/panic_on_oops 1
write /proc/sys/kernel/hung_task_timeout_secs 0
write /proc/cpu/alignment 4
write /proc/sys/kernel/sched_latency_ns 10000000
write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000
write /proc/sys/kernel/sched_compat_yield 1
write /proc/sys/kernel/sched_child_runs_first 0
write /proc/LinuStoreIII/fsbuild_check BUILDING
on boot
ifup lo
hostname localhost
domainname localdomain
class_start default
#exec /sbin/sh /sbin/init.data
exec /sbin/sh /sbin/killrecovery.sh
service ueventd /sbin/ueventd
critical
service console /system/sh
console
#service recovery /sbin/recovery
service adbd /sbin/adbd recovery
disabled
# Always start adbd on userdebug and eng builds
# In recovery, always run adbd as root.
on property:ro.debuggable=1
#start adbd
setprop service.adb.root 1
# Restart adbd so it can run as root
on property:service.adb.root=1
write /sys/class/android_usb/android0/enable 0
restart adbd
write /sys/class/android_usb/android0/enable 1
on property:persist.service.adb.enable=1
start adbd
#on property:persist.service.adb.enable=0
# stop adbd