blob: 6a6c7d0d1f750c9cb77bd1517ca9b8275b721186 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
on boot
# setprop net.eth0.dns1 10.32.192.11
# setprop net.eth0.dns2 10.32.193.11
setprop ro.build.product smdkc110
setprop ro.product.device smdkc110
setprop ro.radio.noril yes
setprop ro.bt.bdaddr_path "/data/misc/bluetoothd/bt_addr"
# fake some battery state
setprop status.battery.state Slow
setprop status.battery.level 5
setprop status.battery.level_raw 50
setprop status.battery.level_scale 9
# wi-fi
mkdir /data/misc/wifi/sockets 0770 wifi wifi
mkdir /data/misc/dhcp 0770 dhcp dhcp
# create data/gps for GPS demon
chown root system /dev/s3c2410_serial1
chmod 664 /dev/s3c2410_serial1
mkdir /data/gps 771 system system
chown system system /data/gps
chown root system /sys/class/sec/gps/GPS_PWR_EN/value
chmod 664 /sys/class/sec/gps/GPS_PWR_EN/value
chown root system /sys/class/gpio/gpio104/value
chmod 664 /sys/class/gpio/gpio104/value
chown root system /sys/class/gpio/gpio105/value
chmod 664 /sys/class/gpio/gpio105/value
service glgps /system/bin/gpsd/glgps_samsungJupiter -c /system/etc/jupiter.xml
user system
group system inet
# permissions for bluetooth.
chown bluetooth bluetooth ro.bt.bdaddr_path
chown bluetooth bluetooth /dev/s3c2410_serial0
chmod 0600 /dev/s3c2410_serial0
chmod 0660 /sys/class/rfkill/rfkill0/state
chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
service wpa_supplicant /system/bin/wpa_supplicant -Dwext -ieth0 -c/data/misc/wifi/wpa_supplicant.conf
socket wpa_eth0 dgram 0660 wifi wifi
disabled
oneshot
service dhcpcd /system/bin/dhcpcd -ABKL
disabled
oneshot
# Permissions for System Server and daemons.
chown system system /sys/class/backlight/s5p_bl/brightness
service hciattach /system/bin/bcm_attach -d --enable_hci \
--baudrate 921600 --patchram system/etc/firmware/bcm4329.hcd /dev/s3c2410_serial0
user bluetooth
group bluetooth net_bt_admin
disabled
oneshot
|