summaryrefslogtreecommitdiff
path: root/recipes-core/nv-conf/files/nv-conf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/nv-conf/files/nv-conf.sh')
-rw-r--r--recipes-core/nv-conf/files/nv-conf.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/recipes-core/nv-conf/files/nv-conf.sh b/recipes-core/nv-conf/files/nv-conf.sh
deleted file mode 100644
index 3b34257..0000000
--- a/recipes-core/nv-conf/files/nv-conf.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# NVIDIA specific init script
-
-# power state
-if [ -e /sys/power/state ]; then
- chmod 0666 /sys/power/state
-fi
-
-# turn off low-power core migration for now
-if [ -e /sys/module/cpu_tegra3/parameters/no_lp ] ; then
- echo Y > /sys/module/cpu_tegra3/parameters/no_lp
-fi
-
-# enable CPU hot-plugging
-if [ -e /sys/module/cpu_tegra3/parameters/auto_hotplug ] ; then
- echo 1 > /sys/module/cpu_tegra3/parameters/auto_hotplug
-fi
-
-# lp2 idle state
-if [ -e /sys/module/cpuidle/parameters/lp2_in_idle ] ; then
- echo "Y" > /sys/module/cpuidle/parameters/lp2_in_idle
-fi
-
-exit 0