summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2018-10-05 16:27:35 -0700
committerIgor Murashkin <iam@google.com>2018-10-05 16:27:35 -0700
commit32b6a888c006db0cd2d11ba50f2d0e2dbeb402df (patch)
treeae47187d91507e28f66af0d6d05fa6942a37d45a
parent6d0699b438bd83390d2c2270e717aceb7cb6af3f (diff)
downloadiorap-32b6a888c006db0cd2d11ba50f2d0e2dbeb402df.tar.gz
build: Add init_rc file for iorapdmaster-cuttlefish-testing-release
This makes iorapd start up automatically as part of the system. Bug: 72170747 Change-Id: I46883520ead5ed3eb1417aae42f8b9c7701b70af
-rw-r--r--Android.bp3
-rw-r--r--iorapd.rc29
2 files changed, 32 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index feae96e..8c1e925 100644
--- a/Android.bp
+++ b/Android.bp
@@ -113,6 +113,9 @@ cc_binary {
srcs: [
"src/iorapd/main.cc",
],
+ init_rc: [
+ "iorapd.rc",
+ ],
}
cc_test {
diff --git a/iorapd.rc b/iorapd.rc
new file mode 100644
index 0000000..e48a04a
--- /dev/null
+++ b/iorapd.rc
@@ -0,0 +1,29 @@
+# Copyright (C) 2018 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+service iorapd /system/bin/iorapd
+ class main
+ user iorapd
+ group iorapd
+ writepid /dev/cpuset/system-background/tasks
+# TODO: should this be something else like performance/tasks?
+# the main 'activity hint' thread needs to be fairly high priority to kick off
+# tracing or prefetching asap.
+
+on property:ro.iorapd.enable=false
+ stop iorapd
+
+on post-fs-data
+ # Create directory for iorapd (see iorapd_data_file in selinux file_contexts).
+ mkdir /data/misc/iorapd/ 0770 iorapd iorapd