Ver Mensaje Individual
  #44  
Viejo 25/09/11, 16:04:43
Array

[xs_avatar]
R16 R16 no está en línea
Miembro del foro
 
Fecha de registro: feb 2010
Localización: Portugal
Mensajes: 338
Modelo de smartphone: Htc Hero & GalaxyS2
Tu operador: Movistar
ok encontrei este script en post xda:

#!/system/bin/sh #customize voltages to you values #All Steps in MHz #Steps are: 1400 1200 1000 800 500 200 NORMAL_STEPS="1275 1175 1075 975 875 875" #Added Step is for max_step higher than 1400Mhz HIGHER_STEP="1425" #Added Step is for min_step lower than 200Mhz LOWER_STEP="850" echo "kwerdenkers kernel adaptive UV init-script active. Checking kernel for UV support..." #Checking stuff if [[ -e /sys/devices/system/cpu/cpu0/cpufreq/UV_mV_table ]]; then echo "Kernel supports undervolting! Checking frequencies table for number of speed steps..." UV_COUNT=$(cat /sys/devices/system/cpu/cpu0/cpufreq/UV_mV_table | wc -l) case $UV_COUNT in 6) echo "6 speed steppings found" echo $NORMAL_STEPS > /sys/devices/system/cpu/cpu0/cpufreq/UV_mV_table ;; 7) echo "7 speed steppings found" echo $HIGHER_STEP" "$NORMAL_STEPS > /sys/devices/system/cpu/cpu0/cpufreq/UV_mV_table ;; 8) echo "8 speed steps found. Checking for Siyah kernel..." if [[ $(uname -r | grep Siyah -) ]]; then echo "Kernel found. Safe to use 8 step UV settings." echo $HIGHER_STEP" "$NORMAL_STEPS" "$LOWER_STEP > /sys/devices/system/cpu/cpu0/cpufreq/UV_mV_table else echo "Other 8 step kernel found. Skipping UV for now for security reasons." fi ;; *) echo "[!!] Found number of steppings with no correlating UV settings: "$UV_COUNT". No UV will be used! Please repot your kernel and the steppings to the author of this script." ;; esac else echo "Kernel does not seem to support UV settings. Skipping UV." fi



Pero ahora como lo tranfiro para sgs2? copio el texto para onde?
__________________
Responder Con Cita