/etc/init/no-cpu-hotplug.conf is in lxc-android-config 0.230+16.04.20160328-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | description "disable cpu hotplugging during Ubuntu Touch boot"
start on local-filesystems
task
script
for cpu in /sys/devices/system/cpu/cpu?/online; do
chmod 444 $cpu
done
end script
|