This file is indexed.

/etc/init/enable-cpu-hotplugging.conf is in lxc-android-config 0.162.

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
12
description     "enable cpu hotplugging after Ubuntu Touch boot"

start on runlevel [2345]

task

script
sleep 60
for cpu in /sys/devices/system/cpu/cpu?/online; do
	chmod 644 $cpu
done
end script