resolved conflicts for 5caca3dd
to mnc-dr-dev-plus-aosp
Change-Id: I773e514a8232b77cdd566dc36c9efc4e15f206f0
This commit is contained in:
commit
984bd8323d
6 changed files with 12 additions and 0 deletions
|
@ -1,2 +1,3 @@
|
|||
service debuggerd /system/bin/debuggerd
|
||||
class main
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
service debuggerd64 /system/bin/debuggerd64
|
||||
class main
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
|
|
@ -2,3 +2,4 @@ service lmkd /system/bin/lmkd
|
|||
class core
|
||||
critical
|
||||
socket lmkd seqpacket 0660 system system
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
|
|
@ -11,3 +11,4 @@ service logcatd /system/bin/logcat -b all -v threadtime -v usec -v printable -D
|
|||
# logd for write to /data/misc/logd, log group for read from log daemon
|
||||
user logd
|
||||
group log
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
|
|
@ -4,7 +4,9 @@ service logd /system/bin/logd
|
|||
socket logdr seqpacket 0666 logd logd
|
||||
socket logdw dgram 0222 logd logd
|
||||
group root system
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
||||
service logd-reinit /system/bin/logd --reinit
|
||||
oneshot
|
||||
disabled
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
|
|
@ -138,14 +138,20 @@ on init
|
|||
mkdir /dev/cpuset/foreground
|
||||
mkdir /dev/cpuset/foreground/boost
|
||||
mkdir /dev/cpuset/background
|
||||
# system-background is for system tasks that should only run on
|
||||
# little cores, not on bigs
|
||||
# to be used only by init, so don't change the permissions
|
||||
mkdir /dev/cpuset/system-background
|
||||
# this ensures that the cpusets are present and usable, but the device's
|
||||
# init.rc must actually set the correct cpus
|
||||
write /dev/cpuset/foreground/cpus 0
|
||||
write /dev/cpuset/foreground/boost/cpus 0
|
||||
write /dev/cpuset/background/cpus 0
|
||||
write /dev/cpuset/system-background/cpus 0
|
||||
write /dev/cpuset/foreground/mems 0
|
||||
write /dev/cpuset/foreground/boost/mems 0
|
||||
write /dev/cpuset/background/mems 0
|
||||
write /dev/cpuset/system-background/mems 0
|
||||
chown system system /dev/cpuset
|
||||
chown system system /dev/cpuset/foreground
|
||||
chown system system /dev/cpuset/foreground/boost
|
||||
|
|
Loading…
Reference in a new issue