Something went wrong on our end
Select Git revision
file_contexts
-
Max Bires authored
It seems likely that there is no reason to keep around a number of devices that are configured to be included into the pixel kernels. Init and ueventd should be the only processes with r/w access to these devices, so auditallow rules have been added to ensure that they aren't actually used. /dev/keychord was given its own type since it's one of the few character devices that's actually legitimately used and would cause log spam in the auditallow otherwise. Bug: 33347297 Test: The phone boots without any apparent log spam. Change-Id: I3dd9557df8a9218b8c802e33ff549d15849216fb
Max Bires authoredIt seems likely that there is no reason to keep around a number of devices that are configured to be included into the pixel kernels. Init and ueventd should be the only processes with r/w access to these devices, so auditallow rules have been added to ensure that they aren't actually used. /dev/keychord was given its own type since it's one of the few character devices that's actually legitimately used and would cause log spam in the auditallow otherwise. Bug: 33347297 Test: The phone boots without any apparent log spam. Change-Id: I3dd9557df8a9218b8c802e33ff549d15849216fb
dotestCL.sh 634 B
#!/bin/bash
dir=$HOME/.www/cool/noon/
while sleep 0.2 ; do
for T in 5 ; do
for d in {8..15} ; do
echo
echo "=== d=$d T=$T ==="
~/git/cool-solver/randcool/dist/build/randcool/randcool \
--coalition-logic \
--modal-depth-tbox 2 -T $T -n 2 \
-A 5 \
--max-conjuncts 4 \
--max-disjuncts 4 \
-d $d \
> input
./coalgcompare --timeout 300 genericCL < input \
| tee -a $dir/CL-d${d}-T${T}.${HOSTNAME} \
|| break
done
done
done