• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1on fs
2    mount_all /vendor/etc/fstab.ranchu
3
4on early-init
5    mount debugfs debugfs /sys/kernel/debug mode=755
6
7on init
8    symlink /dev/goldfish_pipe /dev/android_pipe
9    symlink /dev/goldfish_pipe /dev/qemu_pipe
10
11on post-fs-data
12    # nothing
13
14on zygote-start
15    # nothing
16
17on boot
18    start goldfish-logcat
19
20on property:vendor.qemu.timezone=*
21    setprop persist.sys.timezone ${vendor.qemu.timezone}
22
23on property:dev.bootcomplete=1
24    setprop vendor.qemu.dev.bootcomplete 1
25
26service qemu-props /vendor/bin/qemu-props
27    class core
28    user root
29    group root
30    oneshot
31
32service goldfish-logcat /system/bin/logcat -Q
33    user logd
34    group log
35    oneshot
36
37service bugreport /system/bin/dumpstate -d -p -B -z \
38        -o /data/user_de/0/com.android.shell/files/bugreports/bugreport
39    class main
40    disabled
41    oneshot
42    keycodes 114 115 116
43