Android-x86
Fork
Donation

  • R/O
  • HTTP
  • SSH
  • HTTPS

system-core: Commit

system/core


Commit MetaInfo

Revision958d36230dd5cf04e233ba2b51054aae06a288f4 (tree)
Time2019-10-22 16:14:00
AuthorChih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Log Message

Merge remote-tracking branch 'x86/nougat-x86' into cm-14.1-x86

Change Summary

Incremental Difference

--- a/libutils/String16.cpp
+++ b/libutils/String16.cpp
@@ -101,7 +101,6 @@ static char16_t* allocFromUTF16(const char16_t* u16str, size_t u16len) {
101101 return getEmptyString();
102102 }
103103
104-
105104 // ---------------------------------------------------------------------------
106105
107106 String16::String16()
--- a/rootdir/init.rc
+++ b/rootdir/init.rc
@@ -169,25 +169,25 @@ on init
169169 # this ensures that the cpusets are present and usable, but the device's
170170 # init.rc must actually set the correct cpus
171171 mkdir /dev/cpuset/foreground
172- write /dev/cpuset/foreground/cpus 0
173- write /dev/cpuset/foreground/mems 0
172+ copy /dev/cpuset/cpus /dev/cpuset/foreground/cpus
173+ copy /dev/cpuset/mems /dev/cpuset/foreground/mems
174174 mkdir /dev/cpuset/foreground/boost
175- write /dev/cpuset/foreground/boost/cpus 0
176- write /dev/cpuset/foreground/boost/mems 0
175+ copy /dev/cpuset/cpus /dev/cpuset/foreground/boost/cpus
176+ copy /dev/cpuset/mems /dev/cpuset/foreground/boost/mems
177177 mkdir /dev/cpuset/background
178- write /dev/cpuset/background/cpus 0
179- write /dev/cpuset/background/mems 0
178+ copy /dev/cpuset/cpus /dev/cpuset/background/cpus
179+ copy /dev/cpuset/mems /dev/cpuset/background/mems
180180
181181 # system-background is for system tasks that should only run on
182182 # little cores, not on bigs
183183 # to be used only by init, so don't change system-bg permissions
184184 mkdir /dev/cpuset/system-background
185- write /dev/cpuset/system-background/cpus 0
186- write /dev/cpuset/system-background/mems 0
185+ copy /dev/cpuset/cpus /dev/cpuset/system-background/cpus
186+ copy /dev/cpuset/mems /dev/cpuset/system-background/mems
187187
188188 mkdir /dev/cpuset/top-app
189- write /dev/cpuset/top-app/cpus 0
190- write /dev/cpuset/top-app/mems 0
189+ copy /dev/cpuset/cpus /dev/cpuset/top-app/cpus
190+ copy /dev/cpuset/mems /dev/cpuset/top-app/mems
191191
192192 # change permissions for all cpusets we'll touch at runtime
193193 chown system system /dev/cpuset
Show on old repository browser