OSDN Git Service

Remove powerbtnd service
[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 logcat /system/bin/logcat -v threadtime -f /data/log.txt
98     class debug
99
100 service btattach /system/bin/btattach
101     class main
102     disabled
103     oneshot
104
105 service wacom-input /system/bin/wacom-input
106     disabled
107     oneshot
108
109 service tablet-mode /system/bin/tablet-mode
110     disabled
111     oneshot
112
113 on property:init.svc.wpa_supplicant=stopped
114     stop dhcpcd
115
116 on property:system_init.startsurfaceflinger=0
117     # disable cursor blinking
118     write /dev/tty0 "\e[?17;0;0c"
119     start surfaceflinger
120     stop console
121
122 on property:sys.boot_completed=1
123     write /proc/sys/kernel/ctrl-alt-del 0
124     exec -- /system/bin/logwrapper /system/bin/sh /system/etc/init.sh bootcomplete
125
126 on property:net.dns1=*
127     exec -- /system/bin/logwrapper /system/bin/sh /system/etc/init.sh netconsole
128
129 on property:debug.logcat=1
130     class_start debug
131
132 on property:persist.sys.nativebridge=1
133     mkdir /data/arm 0775 system system
134     start nativebridge
135
136 on property:persist.sys.nativebridge=0
137     stop nativebridge
138
139 on property:debug.egl.hw=0
140     setprop ro.kernel.qemu 1