summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-04-01 16:26:39 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-01 16:26:39 +0000
commitffca173c853a2e312610d87f40957f696ac8364a (patch)
tree6498d56e54e009f80a5bfadf53c93d2b1a394644
parent697bdc604e8f266ebd6c94fc84eb5057b1a700e3 (diff)
parent5da2dbbc935356f526cdfb0b522b332fc8b95fc7 (diff)
downloadsystem_core-ffca173c853a2e312610d87f40957f696ac8364a.zip
system_core-ffca173c853a2e312610d87f40957f696ac8364a.tar.gz
system_core-ffca173c853a2e312610d87f40957f696ac8364a.tar.bz2
am 5da2dbbc: Merge "Move zygote init config to its own file."
* commit '5da2dbbc935356f526cdfb0b522b332fc8b95fc7': Move zygote init config to its own file.
-rw-r--r--rootdir/init.rc9
-rw-r--r--rootdir/init.zygote32.rc8
-rw-r--r--rootdir/init.zygote64.rc8
3 files changed, 17 insertions, 8 deletions
diff --git a/rootdir/init.rc b/rootdir/init.rc
index 23a517a..a07790a 100644
--- a/rootdir/init.rc
+++ b/rootdir/init.rc
@@ -7,6 +7,7 @@
import /init.environ.rc
import /init.usb.rc
import /init.${ro.hardware}.rc
+import /init.${ro.zygote}.rc
import /init.trace.rc
on early-init
@@ -500,14 +501,6 @@ service surfaceflinger /system/bin/surfaceflinger
group graphics drmrpc
onrestart restart zygote
-service zygote /system/bin/app_process -Xzygote /system/bin --zygote --start-system-server
- class main
- socket zygote stream 660 root system
- onrestart write /sys/android_power/request_state wake
- onrestart write /sys/power/state on
- onrestart restart media
- onrestart restart netd
-
service drm /system/bin/drmserver
class main
user drm
diff --git a/rootdir/init.zygote32.rc b/rootdir/init.zygote32.rc
new file mode 100644
index 0000000..75961e6
--- /dev/null
+++ b/rootdir/init.zygote32.rc
@@ -0,0 +1,8 @@
+service zygote /system/bin/app_process -Xzygote /system/bin --zygote --start-system-server
+ class main
+ socket zygote stream 660 root system
+ onrestart write /sys/android_power/request_state wake
+ onrestart write /sys/power/state on
+ onrestart restart media
+ onrestart restart netd
+
diff --git a/rootdir/init.zygote64.rc b/rootdir/init.zygote64.rc
new file mode 100644
index 0000000..afb6d63
--- /dev/null
+++ b/rootdir/init.zygote64.rc
@@ -0,0 +1,8 @@
+service zygote /system/bin/app_process64 -Xzygote /system/bin --zygote --start-system-server
+ class main
+ socket zygote stream 660 root system
+ onrestart write /sys/android_power/request_state wake
+ onrestart write /sys/power/state on
+ onrestart restart media
+ onrestart restart netd
+