Will the Powertop Add-on be available in future updates?

Hi,

The latest blog, about testing for core update 172, says:

Obsolete gnu-netcat and powertop add-ons have been dropped.

Does this mean that powertop will not be supported in future updates?

I use powertop on all my home PCs, including IPFire where I have:

/usr/sbin/powertop --auto-tune

in /etc/sysconfig/rc.local so I have the optimal settings on boot.

My IPFire system is intel-based and obviously on all the time, so I would like to ensure that it keeps using less power.

Thank you!
Save

1 Like

Perhaps this addon would do: cpufrequtils
You could set CPUFreq Governor to Powersave
-cab

Thank you but Iā€™m afraid not.

The powertop ā€œauto tuneā€ option sets the optimal values for a variety of power saving options. If an update to Powertop has new optimal values, then they are automatically applied.

I could fall back to manually changing what Powertop recommends today (see below) but the ā€œauto tuneā€ option is helpful as it sets what is recommended with the current version of Powertop. Iā€™m hoping that I have misunderstood the blog post or that someone will be willing to keep maintaining Powertop.

# Power Management at boot.  Auto-tune replaces all lines below with the best values at the time!
/usr/sbin/powertop --auto-tune
#
# VM writeback timeout
##echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs'
#
# SATA link power Management for storage hosts {0..5}
##for x in /sys/class/scsi_host/*/link_power_management_policy; do echo 'med_power_with_dipm' > $x; done
#
# Runtime power management for PCI devices
##for a in /sys/bus/pci/devices/*/ata?/power/control; do echo 'auto' > $i; done
##for i in /sys/bus/pci/devices/*/power/control; do echo 'auto' > $i; done
## echo 'auto' > '/sys/bus/pci/devices/0000:00:13.0/ata2/power/control';
#
# Autosuspend for USB devices
##for x in /sys/bus/usb/devices/*/power/control; do echo 'auto' > $x; done
#
# Enable HD Audio power save
##echo '1' > /sys/module/snd_hda_intel/parameters/power_save
#
# Disable NMI Watchdog, cause it causes wakeups:
##echo '0' > /proc/sys/kernel/nmi_watchdog
#
# Disable Wake On Lan (WOL) for green and red interfaces:
##/usr/sbin/ethtool -s green0 wol d
##/usr/sbin/ethtool -s blue0 wol d
##/usr/sbin/ethtool -s orange0 wol d
##/usr/sbin/ethtool -s red0 wol d

Thank you,
Save

This was discussed in the monthly Development Video Conf Call today.

Log of meeting

The decision was taken to keep Powertop as an addon in IPFire. The removal in Core Update 172 Testing will be reverted for Core Update 172 release.

4 Likes

Thank you very much! Thatā€™s fantastic.

Save