#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

echo 4000000 >/proc/sys/kernel/sched_min_granularity_ns
echo 4000000 >/proc/sys/kernel/sched_wakeup_granularity_ns
echo 32000000 >/proc/sys/kernel/sched_latency_ns
echo 1000000 >/proc/sys/kernel/sched_shares_ratelimit
echo NO_WAKEUP_PREEMPT >/sys/kernel/debug/sched_features

for i in `find /sys/devices/system/cpu/ | grep scaling_governor`; do
	echo "performance" >$i
done
