132 lines
3.8 KiB
Plaintext
Executable File
132 lines
3.8 KiB
Plaintext
Executable File
on init
|
|
mount rootfs rootfs / remount
|
|
mkdir /app-cache 01777 system system
|
|
mount tmpfs tmpfs /app-cache size=8m
|
|
mount rootfs rootfs / ro remount
|
|
|
|
# Define the memory thresholds at which the above process classes will
|
|
# be killed. These numbers are in pages (4k).
|
|
setprop ro.FOREGROUND_APP_MEM 3584
|
|
setprop ro.VISIBLE_APP_MEM 4096
|
|
setprop ro.SECONDARY_SERVER_MEM 6144
|
|
setprop ro.BACKUP_APP_MEM 6144
|
|
setprop ro.HOME_APP_MEM 6144
|
|
setprop ro.HIDDEN_APP_MEM 7168
|
|
setprop ro.CONTENT_PROVIDER_MEM 7680
|
|
setprop ro.EMPTY_APP_MEM 8192
|
|
|
|
on boot
|
|
mkdir /data/misc/wifi 0770 wifi wifi
|
|
mkdir /data/misc/wifi/sockets 0770 wifi wifi
|
|
mkdir /data/misc/dhcp 0770 dhcp dhcp
|
|
chown dhcp dhcp /data/misc/dhcp
|
|
|
|
# bluetooth power up/down interface
|
|
chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
|
|
chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
|
|
chmod 0660 /sys/class/rfkill/rfkill0/state
|
|
|
|
chown radio radio /sys/module/pm/parameters/idle_sleep_mode
|
|
|
|
# for wireless modem
|
|
chown system system /sys/module/serial/parameters/modem_enabled
|
|
chown system system /dev/ttyHSUSB0
|
|
chown system system /dev/smd9
|
|
chown media media /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
|
|
|
|
# Power Management
|
|
write /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate 40000
|
|
|
|
# Overwrite framework low memory killer minfree setting
|
|
write /sys/module/lowmemorykiller/parameters/minfree 3584,4096,6144,7168,7680,8192
|
|
|
|
# Enable low memory killer to check file pages
|
|
write /sys/module/lowmemorykiller/parameters/minfile 0,0,0,5120,5632,6144
|
|
write /sys/module/lowmemorykiller/parameters/check_filepages 1
|
|
|
|
service wpa_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant \
|
|
-Dwext -ieth0 -c/data/misc/wifi/wpa_supplicant.conf
|
|
# we will start as root and wpa_supplicant will switch to user wifi
|
|
# after setting up the capabilities required for WEXT
|
|
# user wifi
|
|
# group wifi inet keystore
|
|
socket wpa_eth0 dgram 660 wifi wifi
|
|
disabled
|
|
oneshot
|
|
|
|
|
|
service dhcpcd_eth0 /system/bin/dhcpcd -ABKL eth0
|
|
disabled
|
|
oneshot
|
|
|
|
# compass/accelerometer daemon
|
|
service akmd /system/bin/akmd
|
|
user compass
|
|
group compass misc input
|
|
|
|
# bugreport is triggered by the KEY_VOLUMEUP and BTN_MOUSE keycodes
|
|
service bugreport /system/bin/dumpstate -d -v -o /sdcard/bugreports/bugreport
|
|
disabled
|
|
oneshot
|
|
keycodes 115 272
|
|
|
|
#service hciattach /system/bin/brcm_patchram_plus --enable_hci --patchram /etc/firmware/bcm4329.hcd /dev/ttyHS0
|
|
# user bluetooth
|
|
# group bluetooth net_bt_admin
|
|
# disabled
|
|
|
|
# Make sure we startup btld before hcid
|
|
# Set target address to emulator host loopback IF
|
|
# Limit baudrate to 460800 to ensure reliable uart operation
|
|
#service btld /system/bin/logwrapper /system/bin/btld -hwtun 10.0.2.2 -hb 460800 3000000 -lpm 1
|
|
service btld /system/bin/logwrapper /system/bin/btld -lpm 1 -hb 3000000
|
|
user root
|
|
group bluetooth net_bt_admin
|
|
disabled
|
|
oneshot
|
|
|
|
# for USB internet sharing
|
|
service udhcpd /system/bin/udhcpd
|
|
disabled
|
|
oneshot
|
|
|
|
service netsharing_on /system/bin/netsharing net on
|
|
disabled
|
|
oneshot
|
|
|
|
service netsharing_off /system/bin/netsharing net off
|
|
disabled
|
|
oneshot
|
|
|
|
service netsharing_pass /system/bin/netsharing net_pass on
|
|
disabled
|
|
oneshot
|
|
|
|
service modem /system/xbin/wireless_modem
|
|
user system
|
|
group system
|
|
disabled
|
|
|
|
service zchgd /system/bin/zchgd
|
|
user root
|
|
group root graphics
|
|
oneshot
|
|
|
|
on property:service.modem.enable=1
|
|
start modem
|
|
|
|
on property:service.modem.enable=0
|
|
stop modem
|
|
|
|
service srv_ser2net /system/bin/ser2net -n
|
|
disabled
|
|
|
|
on property:service.ser2net.enable=1
|
|
start srv_ser2net
|
|
|
|
on property:service.ser2net.enable=0
|
|
stop srv_ser2net
|
|
|
|
service clockd /system/bin/clockd
|
|
|