blob: bc91e2f36b53820ce794080935da175a7860b677 [file] [log] [blame]
Jeff Sharkey7c38b542013-04-10 14:18:23 -07001
keunyounga76102f2013-03-05 11:01:50 -08002on early-init
Lingfeng Yangd0dc6162017-01-19 15:53:05 -08003 mount debugfs debugfs /sys/kernel/debug mode=755
keunyounga76102f2013-03-05 11:01:50 -08004
Jeff Sharkey7c38b542013-04-10 14:18:23 -07005on init
Jeff Sharkeycbf417f2015-03-30 19:12:57 -07006
keunyounga76102f2013-03-05 11:01:50 -08007on boot
keunyounga76102f2013-03-05 11:01:50 -08008 setprop ARGH ARGH
9 setprop net.eth0.gw 10.0.2.2
10 setprop net.eth0.dns1 10.0.2.3
Ron Munitze96a7c72013-05-16 16:28:23 +030011 setprop net.dns1 10.0.2.3
keunyounga76102f2013-03-05 11:01:50 -080012 setprop net.gprs.local-ip 10.0.2.15
Lingfeng Yangd0dc6162017-01-19 15:53:05 -080013 setprop persist.adb.notify 1
14 setprop persist.sys.usb.config adb
15 setprop qemu.adb.secure 0
16 setprop ro.adb.secure 1
keunyounga76102f2013-03-05 11:01:50 -080017 setprop ro.radio.use-ppp no
18 setprop ro.build.product generic
19 setprop ro.product.device generic
20
21# fake some battery state
22 setprop status.battery.state Slow
23 setprop status.battery.level 5
24 setprop status.battery.level_raw 50
25 setprop status.battery.level_scale 9
26
Yurii Zubrytskyi6fc69c72016-05-13 14:13:32 -070027# set up the GPU caching
28 setprop ro.hwui.texture_cache_size 72
29 setprop ro.hwui.layer_cache_size 48
30 setprop ro.hwui.r_buffer_cache_size 8
31 setprop ro.hwui.path_cache_size 32
32 setprop ro.hwui.gradient_cache_size 1
33 setprop ro.hwui.drop_shadow_cache_size 6
34 setprop ro.hwui.texture_cache_flushrate 0.4
35 setprop ro.hwui.text_small_cache_width 1024
36 setprop ro.hwui.text_small_cache_height 1024
37 setprop ro.hwui.text_large_cache_width 2048
38 setprop ro.hwui.text_large_cache_height 1024
39
keunyounga76102f2013-03-05 11:01:50 -080040# disable some daemons the emulator doesn't want
41 stop dund
42 stop akmd
43
44# start essential services
Lingfeng Yangd0dc6162017-01-19 15:53:05 -080045 start qemud
keunyounga76102f2013-03-05 11:01:50 -080046 start goldfish-logcat
47 start goldfish-setup
48
49 setprop ro.setupwizard.mode EMULATOR
50
51# enable Google-specific location features,
52# like NetworkLocationProvider and LocationCollector
53 setprop ro.com.google.locationfeatures 1
54
55# For the emulator, which bypasses Setup Wizard, you can specify
56# account info for the device via these two properties. Google
57# Login Service will insert these accounts into the database when
58# it is created (ie, after a data wipe).
59#
60# setprop ro.config.hosted_account username@hosteddomain.org:password
61# setprop ro.config.google_account username@gmail.com:password
62#
63# You MUST have a Google account on the device, and you MAY
64# additionally have a hosted account. No other configuration is
65# supported, and arbitrary breakage may result if you specify
66# something else.
67
Nick Kralevich8f9288e2013-07-12 13:49:49 -070068on fs
69 mount_all /fstab.goldfish
70
bohu7e8b6922017-03-15 00:03:43 -070071#emulator is not much useful before boot complete
72#start it later
73on property:sys.boot_completed=1
74 setprop sys.usb.config adb
75 start adbd
76
keunyounga76102f2013-03-05 11:01:50 -080077service goldfish-setup /system/etc/init.goldfish.sh
78 user root
Lingfeng Yangd0dc6162017-01-19 15:53:05 -080079 group root
keunyounga76102f2013-03-05 11:01:50 -080080 oneshot
81
82# The qemu-props program is used to set various system
83# properties on boot. It must be run early during the boot
84# process to avoid race conditions with other daemons that
85# might read them (e.g. surface flinger), so define it in
86# class 'core'
87#
88service qemu-props /system/bin/qemu-props
89 class core
90 user root
91 group root
92 oneshot
93
Lingfeng Yangd0dc6162017-01-19 15:53:05 -080094service qemud /system/bin/qemud
95 socket qemud stream 666
96 oneshot
97
keunyounga76102f2013-03-05 11:01:50 -080098# -Q is a special logcat option that forces the
99# program to check wether it runs on the emulator
100# if it does, it redirects its output to the device
101# named by the androidboot.console kernel option
102# if not, is simply exits immediately
bohu7197f732017-03-07 14:10:50 -0800103# logd user added to prevent logcat from logging content.
104# log group added to support access to read logs socket.
keunyounga76102f2013-03-05 11:01:50 -0800105service goldfish-logcat /system/bin/logcat -Q
bohu7197f732017-03-07 14:10:50 -0800106 user logd
107 group log
keunyounga76102f2013-03-05 11:01:50 -0800108 oneshot
bohu9aaf1aa2015-05-27 17:56:45 -0700109
110service fingerprintd /system/bin/fingerprintd
111 class late_start
112 user system
bohu0ff252b2016-06-27 18:23:28 -0700113
Abhijeet Kaur584b8ad2019-08-02 15:46:50 +0100114service bugreport /system/bin/dumpstate -d -p
bohu0ff252b2016-06-27 18:23:28 -0700115 class main
116 disabled
117 oneshot
118 keycodes 114 115 116