Am on v2.6.1 and loving it... however, I now have 3 versions of the siyah_battery.zip.
The first was downloaded when v2.6_S99 was released.
The second is the amended battery.zip from the same kernel
The third is one I downloaded from v2.6.1 blog early this morning (just in case there was a difference).
Using the 3rd version with Automatic Brightness, in Display, as I usually do... it is much darker than either versions 1 or 2.
I have reloaded all 3 to test again and 3 (the latest from the v2.6.1 link) is definitely a lot dimmer.
I have now switched back to the amended battery.zip from the last kernel.
I was just wondering if anything had been changed in version 3 or if anyone else was experiencing this?
UPDATE
The 3 brightness settings in version 2 of the siyah_battery script start... echo 50, 0 and 20.
Whilst the latest version 3 (from the 2.6.1 blog) script has... echo 70, 0 and 19.
that would be the max_gamma setting of 19 doing that then butty.
I dont know if i'm imagining it but my screen on 2.6.1 seems duller, and I'm still using the battery zip from the 2nd build!
Battery.zip (V3):
#!/sbin/busybox sh
#hotplug parameters
echo 35 > /sys/module/pm_hotplug/parameters/loadl
echo 80 > /sys/module/pm_hotplug/parameters/loadh
echo 90 > /sys/module/pm_hotplug/parameters/loadl_scroff
echo 100 > /sys/module/pm_hotplug/parameters/loadh_scroff
echo 400 > /sys/module/pm_hotplug/parameters/rate
echo 400 > /sys/module/pm_hotplug/parameters/rate_cpuon
echo 1000 > /sys/module/pm_hotplug/parameters/rate_scroff
echo 524288 > /sys/module/pm_hotplug/parameters/freq_cpu1on
#cpu freq
echo 100000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo 1200000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
#deepsleep levels
echo 4 > /sys/devices/system/cpu/cpu0/cpufreq/deepsleep_cpulevel
echo 0 > /sys/devices/system/cpu/cpu0/cpufreq/deepsleep_buslevel
#smooth scaling parameters
echo 2 > /sys/devices/system/cpu/cpu0/cpufreq/smooth_target
echo 1 > /sys/devices/system/cpu/cpu0/cpufreq/smooth_offset
echo 1 > /sys/devices/system/cpu/cpu0/cpufreq/smooth_step
#cpu governor
echo ondemandx > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
#gpu clock, threshold and voltage
echo "100 267" > /sys/class/misc/gpu_clock_control/gpu_control
echo "60% 30%" > /sys/class/misc/gpu_clock_control/gpu_control
echo "900000 950000" > /sys/class/misc/gpu_voltage_control/gpu_control
#io scheduler
echo sio > /sys/block/mmcblk0/queue/scheduler
#static bus frequency
#echo enabled > /sys/devices/system/cpu/cpu0/cpufreq/busfreq_static
#enable sched_mc
echo 1 > /sys/devices/system/cpu/sched_mc_power_savings
#enable AFTR
echo 3 > /sys/module/cpuidle/parameters/enable_mask
#brightness settings
echo 70 > /sys/class/misc/brightness_curve/min_bl
echo 0 > /sys/class/misc/brightness_curve/min_gamma
echo 19 > /sys/class/misc/brightness_curve/max_gamma
#disable logger (will take effect after a reboot)
mkdir /data/.siyah
chmod 777 /data/.siyah
touch /data/.siyah/disable-logger
This version will disable the android logger.