hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
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
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 /cache
    mount /tmp /tmp tmpfs
 
on boot
 
    ifup lo
    hostname localhost
    domainname localdomain
 
    class_start default
 
service ueventd /sbin/ueventd
    critical
 
service recovery /sbin/recovery
 
service adbd /sbin/adbd recovery
    disabled
 
on property:persist.service.adb.enable=1
    start adbd
 
on property:persist.service.adb.enable=0
    stop adbd