blob: a009792d304b56010ee3e74aa0f14bcd60230496 [file] [log] [blame]
Dmitry Shmidtd7114332015-12-10 10:35:59 -08001import init.hikey.usb.rc
2
Vishal Bhoje72c9202015-10-23 18:10:21 +01003on init
4 # mount debugfs
5 mount debugfs /sys/kernel/debug /sys/kernel/debug
6
Vishal Bhoje72c9202015-10-23 18:10:21 +01007 # disable transparent huge pages
8 write /sys/kernel/mm/transparent_hugepage/enabled "never"
9
Vishal Bhoje72c9202015-10-23 18:10:21 +010010 # Disabled virtual memory randomization
11 # (if randomization is enabled the AEM-JIT will have a lower cache hit rate)
12 write /proc/sys/kernel/randomize_va_space 0
13
Vishal Bhoje72c9202015-10-23 18:10:21 +010014on fs
15 mount_all /fstab.hikey
16 setprop ro.crypto.fuse_sdcard false
17
Vishal Bhoje72c9202015-10-23 18:10:21 +010018on post-fs-data
19 mkdir /data/media 0770 media_rw media_rw
20 mkdir /data/misc/gatord 0700 root root
Vishal Bhoje72c9202015-10-23 18:10:21 +010021 # Set SELinux security contexts for files used by lava.
22 restorecon_recursive /data/local/tmp/lava
23
24on post-fs
Yongqin Liu05ba0862016-03-23 21:22:57 +080025
26 # For legacy support
27 # See storage config details at http://source.android.com/tech/storage/
28 # since /storage is mounted on post-fs in init.rc
Yongqin Liu05ba0862016-03-23 21:22:57 +080029 symlink /sdcard /storage/sdcard0
30
Vishal Bhoje72c9202015-10-23 18:10:21 +010031 # BT LED sysfs entry
32 write /sys/devices/leds/leds/bt_active/trigger "hci1rx"
33
34 chmod 0666 /dev/ump
35 chmod 0666 /dev/ion
Vishal Bhoje72c9202015-10-23 18:10:21 +010036 chmod 0666 /dev/graphics/fb0
37
38# fake some battery state
39 setprop status.battery.state Slow
40 setprop status.battery.level 5
41 setprop status.battery.level_raw 50
42 setprop status.battery.level_scale 9
43
44# Set Display density
45 setprop ro.sf.lcd_density 160
46
47# Set supported opengles version
48 setprop ro.opengles.version 196608
49
Yongqin Liu16c8b0a2016-03-23 21:35:50 +080050 # update cpuset now that processors are up
John Stultz2d63a362016-08-23 10:56:20 -070051 # Foreground should contain most cores (7 is reserved for top-app)
52 write /dev/cpuset/foreground/cpus 0-6
Yongqin Liu16c8b0a2016-03-23 21:35:50 +080053
John Stultz2d63a362016-08-23 10:56:20 -070054 # top-app gets all cpus (including reserved #7)
55 write /dev/cpuset/top-app/cpus 0-7
Yongqin Liu16c8b0a2016-03-23 21:35:50 +080056
57 #background contains a small subset (generally one little core)
58 write /dev/cpuset/background/cpus 0
59
60 # add system-background cpuset, a new cpuset for system services
61 # that should not run on larger cores
62 # system-background is for system tasks that should only run on
63 # little cores, not on bigs to be used only by init
John Stultz2d63a362016-08-23 10:56:20 -070064 write /dev/cpuset/system-background/cpus 0-3
Yongqin Liu16c8b0a2016-03-23 21:35:50 +080065
John Stultz6a4721f2016-08-17 17:48:15 -070066 #
67 # EAS stune boosting interfaces
68 #
John Stultz884c7132016-08-24 20:19:35 -070069 chown system system /dev/stune/foreground/schedtune.boost
70 chown system system /dev/stune/schedtune.boost
71 write /dev/stune/foreground/schedtune.boost 10
72 write /dev/stune/schedtune.boost 0
John Stultz6a4721f2016-08-17 17:48:15 -070073
74
Vishal Bhoje72c9202015-10-23 18:10:21 +010075# enable Google-specific location features,
76# like NetworkLocationProvider and LocationCollector
77 setprop ro.com.google.locationfeatures 1
78
79# enable test harness
80 setprop ro.test_harness true
81
Vishal Bhoje72c9202015-10-23 18:10:21 +010082on property:usb_speed.switch=high
83 write /sys/kernel/debug/f72c0000.usb/config "0"
84
85on property:usb_speed.switch=full
86 write /sys/kernel/debug/f72c0000.usb/config "1"
87
88#userspace daemon needed for bluetooth
89service uim /system/bin/uim
90 class main
Yongqin Liu6c1cf5e2016-06-16 23:33:50 +080091 user bluetooth
92 group bluetooth net_bt_admin system net_bt_stack
Vishal Bhoje72c9202015-10-23 18:10:21 +010093 oneshot
94
95service wpa_supplicant /system/bin/wpa_supplicant \
96 -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
97 -e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
98 socket wpa_wlan0 dgram 660 wifi wifi
99 class main
100 disabled
101 oneshot