-
Notifications
You must be signed in to change notification settings - Fork 12
/
init.recovery.rc
58 lines (43 loc) · 985 Bytes
/
init.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
on early-init
start ueventd
on init
export PATH /sbin
export ANDROID_ROOT /system
export ANDROID_DATA /data
export EXTERNAL_STORAGE /sdcard
symlink /system/etc /etc
mkdir /sdcard
mkdir /system
mkdir /data
mkdir /data/data
mkdir /cache
mkdir /mtdcache
mount /tmp /tmp tmpfs
on boot
ifup lo
hostname localhost
domainname localdomain
class_start default
service ueventd /sbin/ueventd
critical
service choice_fn /sbin/choice_fn
oneshot
service recovery /sbin/recovery
disabled
service power_test /sbin/power_test
disabled
oneshot
service offmode_charging /sbin/offmode_charging
disabled
oneshot
service detect_key /sbin/detect_key
disabled
oneshot
service adbd /sbin/adbd recovery
disabled
# Always start adbd on userdebug and eng builds
on property:ro.debuggable=1
start adbd
# Restart adbd so it can run as root
on property:service.adb.root=1
restart adbd