Skip to content

Commit

Permalink
Added CUCUMBER extension
Browse files Browse the repository at this point in the history
  • Loading branch information
sebkinne committed May 8, 2017
1 parent 0eef846 commit 7f44c67
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions payloads/extensions/cucumber.sh
@@ -0,0 +1,25 @@
#!/bin/bash

function CUCUMBER() {
case $1 in
"ENABLE")
echo ondemand | tee /sys/devices/system/cpu/cpu{0..3}/cpufreq/scaling_governor &> /dev/null
echo 0 | tee /sys/devices/system/cpu/cpu{1..3}/online &> /dev/null
;;
"DISABLE")
echo 1 | tee /sys/devices/system/cpu/cpu{1..3}/online &> /dev/null
sleep 2
echo ondemand | tee /sys/devices/system/cpu/cpu{0..3}/cpufreq/scaling_governor &> /dev/null
;;
"PLAID")
echo 1 | tee /sys/devices/system/cpu/cpu{1..3}/online &> /dev/null
sleep 2
echo performance | tee /sys/devices/system/cpu/cpu{0..3}/cpufreq/scaling_governor &> /dev/null
;;
*)
LED FAIL
exit 1
esac
}

export -f CUCUMBER

0 comments on commit 7f44c67

Please sign in to comment.