OSDN Git Service

Merge remote-tracking branch 'x86/marshmallow-x86' into nougat-x86
[android-x86/device-generic-common.git] / init.x86.rc
1 import /init.superuser.rc
2
3 on early-init
4     write /proc/sys/kernel/ctrl-alt-del 1
5
6     write /sys/module/xt_qtaguid/parameters/ctrl_write_limited N
7
8     export force_s3tc_enable true
9     export EGL_LOG_LEVEL info
10 #   export EGL_DRIVERS egl_dri2
11
12 on init
13     symlink /sdcard /mnt/sdcard
14     symlink /sdcard /storage/sdcard0
15
16 on fs
17     mount_all /fstab.${ro.hardware}
18
19 on post-fs
20     exec -- /system/bin/logwrapper /system/bin/sh /system/etc/init.sh
21
22 on post-fs-data
23     mkdir /data/misc/wifi 0770 wifi wifi
24     mkdir /data/misc/wifi/sockets 0770 wifi wifi
25     mkdir /data/misc/wifi/wpa_supplicant 0770 wifi wifi
26     mkdir /data/misc/dhcp 0770 dhcp dhcp
27     mkdir /data/system 0775 system system
28
29     # Set indication (checked by vold) that we have finished this action
30     setprop vold.post_fs_data_done 1
31
32 on boot
33     setprop ro.radio.use-ppp yes
34     setprop status.battery.state Slow
35     setprop status.battery.level 5
36     setprop status.battery.level_raw  50
37     setprop status.battery.level_scale 9
38
39     # merge from system.prop
40     setprop ro.config.sync yes
41     setprop app.setupwizard.disable 0
42     setprop ro.alarm.volume.adjustable true
43     setprop ro.simulated.phone false
44     # disable red frame boarder in eng build
45     setprop persist.sys.strictmode.visual 0
46     setprop persist.sys.strictmode.disable 1
47     # workaround for h.265 slowness
48     setprop sys.media.vdec.drop 0
49
50 service wpa_supplicant /system/bin/wpa_supplicant -c/data/misc/wifi/wpa_supplicant.conf \
51     -iwlan0 -Dnl80211 \
52     -O/data/misc/wifi/sockets \
53     -e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
54     #   we will start as root and wpa_supplicant will switch to user wifi
55     #   after setting up the capabilities required for WEXT
56     #   user wifi
57     #   group wifi inet keystore
58     class main
59     socket wpa_wlan0 dgram 660 wifi wifi
60     disabled
61
62 service dhcpcd_wlan0 /system/bin/dhcpcd -aABDKL
63     class main
64     disabled
65     oneshot
66
67 service iprenew_wlan0 /system/bin/dhcpcd -n
68     class main
69     disabled
70     oneshot
71
72 service dhcpcd_eth0 /system/bin/dhcpcd -ABDKL
73     class main
74     disabled
75     oneshot
76
77 service iprenew_eth0 /system/bin/dhcpcd -n
78     class main
79     disabled
80     oneshot
81
82 service dhcpcd_bt-pan /system/bin/dhcpcd -BKLG
83     class late_start
84     disabled
85     oneshot
86
87 service iprenew_bt-pan /system/bin/dhcpcd -n
88     class late_start
89     disabled
90     oneshot
91
92 service nativebridge /system/bin/enable_nativebridge
93     class main
94     disabled
95     oneshot
96
97 service powerbtnd /system/bin/powerbtnd
98     class late_start
99
100 service logcat /system/bin/logcat -v threadtime -f /data/log.txt
101     class debug
102
103 service btattach /system/bin/btattach
104     class main
105     disabled
106     oneshot
107
108 service wacom-input /system/bin/wacom-input
109     disabled
110     oneshot
111
112 service tablet-mode /system/bin/tablet-mode
113     disabled
114     oneshot
115
116 on property:init.svc.wpa_supplicant=stopped
117     stop dhcpcd
118
119 on property:system_init.startsurfaceflinger=0
120     # disable cursor blinking
121     write /dev/tty0 "\e[?17;0;0c"
122     start surfaceflinger
123     stop console
124
125 on property:sys.boot_completed=1
126     write /proc/sys/kernel/ctrl-alt-del 0
127     exec -- /system/bin/logwrapper /system/bin/sh /system/etc/init.sh bootcomplete
128
129 on property:net.dns1=*
130     exec -- /system/bin/logwrapper /system/bin/sh /system/etc/init.sh netconsole
131
132 on property:debug.logcat=1
133     class_start debug
134
135 on property:persist.sys.nativebridge=1
136     mkdir /data/arm 0775 system system
137     start nativebridge
138
139 on property:persist.sys.nativebridge=0
140     stop nativebridge
141
142 on property:debug.egl.hw=0
143     setprop ro.kernel.qemu 1