summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2018-10-08 14:14:23 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-10-08 14:14:23 -0700
commit6192dea4de6d41d41131e598b4f56fafe944fa1f (patch)
treeae47187d91507e28f66af0d6d05fa6942a37d45a
parentb54a149068b566a59037a2ffd75b865bbddbcf08 (diff)
parent8204e50136e2a3d2fbc27afd2b3c42682847c4bf (diff)
downloadiorap-6192dea4de6d41d41131e598b4f56fafe944fa1f.tar.gz
build: Add init_rc file for iorapd am: 32b6a888c0 am: b1f2a304f9
am: 8204e50136 Change-Id: I8cda444c60666660ab214a573d6688634ef2b5cb
-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