├── .gitignore ├── CONTRIBUTE.md ├── COPYING ├── Doxyfile.in ├── Makefile.am ├── PowerTop.png ├── README.md ├── TODO ├── autogen.sh ├── configure.ac ├── doc ├── Makefile.am └── powertop.8 ├── m4 └── ChangeLog ├── patches ├── linux-2.6.37-ahci-alpm-accounting.patch ├── linux-2.6.37-vfs-dirty-inode.patch ├── linux-3.15-rc3-ahci-alpm-with-devslp-accounting.patch ├── linux-3.3.0-ahci-alpm-accounting.patch ├── linux-3.3.0-vfs-dirty-inode.patch ├── linux-3.9.0-ahci-alpm-accounting.patch └── linux-3.9.0-ahci-alpm-with-devslp-accounting.patch ├── po ├── .tx │ └── config ├── ChangeLog ├── LINGUAS ├── Makefile.in.in ├── Makevars ├── POTFILES.in ├── bn_IN.po ├── ca.po ├── cs_CZ.po ├── da_DK.po ├── de_DE.po ├── en_GB.po ├── en_US.po ├── es_CO.po ├── es_ES.po ├── fy.po ├── hi.po ├── hu_HU.po ├── id_ID.po ├── it_IT.po ├── ja_JP.po ├── ko.po ├── lt.po ├── nl_NL.po ├── pl_PL.po ├── powertop.pot ├── pt_BR.po ├── ru_RU.po ├── tr_TR.po ├── zh_CN.po └── zh_TW.po ├── powertop.service ├── scripts ├── bash-completion │ ├── Makefile.am │ └── powertop └── regenerate-potfiles-in └── src ├── Makefile.am ├── calibrate ├── calibrate.cpp └── calibrate.h ├── cpu ├── abstract_cpu.cpp ├── cpu.cpp ├── cpu.h ├── cpu_core.cpp ├── cpu_linux.cpp ├── cpu_package.cpp ├── cpu_rapl_device.cpp ├── cpu_rapl_device.h ├── cpudevice.cpp ├── cpudevice.h ├── dram_rapl_device.cpp ├── dram_rapl_device.h ├── intel_cpus.cpp ├── intel_cpus.h ├── intel_gpu.cpp └── rapl │ ├── rapl_interface.cpp │ └── rapl_interface.h ├── csstoh.sh ├── devices ├── ahci.cpp ├── ahci.h ├── alsa.cpp ├── alsa.h ├── backlight.cpp ├── backlight.h ├── devfreq.cpp ├── devfreq.h ├── device.cpp ├── device.h ├── gpu_rapl_device.cpp ├── gpu_rapl_device.h ├── i915-gpu.cpp ├── i915-gpu.h ├── network.cpp ├── network.h ├── rfkill.cpp ├── rfkill.h ├── runtime_pm.cpp ├── runtime_pm.h ├── thinkpad-fan.cpp ├── thinkpad-fan.h ├── thinkpad-light.cpp ├── thinkpad-light.h ├── usb.cpp └── usb.h ├── devlist.cpp ├── devlist.h ├── display.cpp ├── display.h ├── lib.cpp ├── lib.h ├── main.cpp ├── measurement ├── acpi.cpp ├── acpi.h ├── extech.cpp ├── extech.h ├── measurement.cpp ├── measurement.h ├── opal-sensors.cpp ├── opal-sensors.h ├── sysfs.cpp └── sysfs.h ├── parameters ├── learn.cpp ├── parameters.cpp ├── parameters.h └── persistent.cpp ├── perf ├── perf.cpp ├── perf.h ├── perf_bundle.cpp ├── perf_bundle.h └── perf_event.h ├── powertop.css ├── process ├── do_process.cpp ├── interrupt.cpp ├── interrupt.h ├── powerconsumer.cpp ├── powerconsumer.h ├── process.cpp ├── process.h ├── processdevice.cpp ├── processdevice.h ├── timer.cpp ├── timer.h ├── work.cpp └── work.h ├── report ├── report-data-html.cpp ├── report-data-html.h ├── report-formatter-base.cpp ├── report-formatter-base.h ├── report-formatter-csv.cpp ├── report-formatter-csv.h ├── report-formatter-html.cpp ├── report-formatter-html.h ├── report-formatter.h ├── report-maker.cpp ├── report-maker.h ├── report.cpp └── report.h ├── tuning ├── bluetooth.cpp ├── bluetooth.h ├── ethernet.cpp ├── ethernet.h ├── iw.c ├── iw.h ├── nl80211.h ├── runtime.cpp ├── runtime.h ├── tunable.cpp ├── tunable.h ├── tuning.cpp ├── tuning.h ├── tuningi2c.cpp ├── tuningi2c.h ├── tuningsysfs.cpp ├── tuningsysfs.h ├── tuningusb.cpp ├── tuningusb.h ├── wifi.cpp └── wifi.h └── wakeup ├── waketab.cpp ├── wakeup.cpp ├── wakeup.h ├── wakeup_ethernet.cpp ├── wakeup_ethernet.h ├── wakeup_usb.cpp └── wakeup_usb.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/COPYING -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/Makefile.am -------------------------------------------------------------------------------- /PowerTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/PowerTop.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf --install --verbose 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/powertop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/doc/powertop.8 -------------------------------------------------------------------------------- /m4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/m4/ChangeLog -------------------------------------------------------------------------------- /patches/linux-2.6.37-ahci-alpm-accounting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-2.6.37-ahci-alpm-accounting.patch -------------------------------------------------------------------------------- /patches/linux-2.6.37-vfs-dirty-inode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-2.6.37-vfs-dirty-inode.patch -------------------------------------------------------------------------------- /patches/linux-3.15-rc3-ahci-alpm-with-devslp-accounting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-3.15-rc3-ahci-alpm-with-devslp-accounting.patch -------------------------------------------------------------------------------- /patches/linux-3.3.0-ahci-alpm-accounting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-3.3.0-ahci-alpm-accounting.patch -------------------------------------------------------------------------------- /patches/linux-3.3.0-vfs-dirty-inode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-3.3.0-vfs-dirty-inode.patch -------------------------------------------------------------------------------- /patches/linux-3.9.0-ahci-alpm-accounting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-3.9.0-ahci-alpm-accounting.patch -------------------------------------------------------------------------------- /patches/linux-3.9.0-ahci-alpm-with-devslp-accounting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/patches/linux-3.9.0-ahci-alpm-with-devslp-accounting.patch -------------------------------------------------------------------------------- /po/.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/cs_CZ.po -------------------------------------------------------------------------------- /po/da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/da_DK.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/es_CO.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/fy.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/hu_HU.po -------------------------------------------------------------------------------- /po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/id_ID.po -------------------------------------------------------------------------------- /po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/it_IT.po -------------------------------------------------------------------------------- /po/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/ja_JP.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/pl_PL.po -------------------------------------------------------------------------------- /po/powertop.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/powertop.pot -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/ru_RU.po -------------------------------------------------------------------------------- /po/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/tr_TR.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /powertop.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/powertop.service -------------------------------------------------------------------------------- /scripts/bash-completion/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/scripts/bash-completion/Makefile.am -------------------------------------------------------------------------------- /scripts/bash-completion/powertop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/scripts/bash-completion/powertop -------------------------------------------------------------------------------- /scripts/regenerate-potfiles-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/scripts/regenerate-potfiles-in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/calibrate/calibrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/calibrate/calibrate.cpp -------------------------------------------------------------------------------- /src/calibrate/calibrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/calibrate/calibrate.h -------------------------------------------------------------------------------- /src/cpu/abstract_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/abstract_cpu.cpp -------------------------------------------------------------------------------- /src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu.cpp -------------------------------------------------------------------------------- /src/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu_core.cpp -------------------------------------------------------------------------------- /src/cpu/cpu_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu_linux.cpp -------------------------------------------------------------------------------- /src/cpu/cpu_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu_package.cpp -------------------------------------------------------------------------------- /src/cpu/cpu_rapl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu_rapl_device.cpp -------------------------------------------------------------------------------- /src/cpu/cpu_rapl_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpu_rapl_device.h -------------------------------------------------------------------------------- /src/cpu/cpudevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpudevice.cpp -------------------------------------------------------------------------------- /src/cpu/cpudevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/cpudevice.h -------------------------------------------------------------------------------- /src/cpu/dram_rapl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/dram_rapl_device.cpp -------------------------------------------------------------------------------- /src/cpu/dram_rapl_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/dram_rapl_device.h -------------------------------------------------------------------------------- /src/cpu/intel_cpus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/intel_cpus.cpp -------------------------------------------------------------------------------- /src/cpu/intel_cpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/intel_cpus.h -------------------------------------------------------------------------------- /src/cpu/intel_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/intel_gpu.cpp -------------------------------------------------------------------------------- /src/cpu/rapl/rapl_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/rapl/rapl_interface.cpp -------------------------------------------------------------------------------- /src/cpu/rapl/rapl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/cpu/rapl/rapl_interface.h -------------------------------------------------------------------------------- /src/csstoh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/csstoh.sh -------------------------------------------------------------------------------- /src/devices/ahci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/ahci.cpp -------------------------------------------------------------------------------- /src/devices/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/ahci.h -------------------------------------------------------------------------------- /src/devices/alsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/alsa.cpp -------------------------------------------------------------------------------- /src/devices/alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/alsa.h -------------------------------------------------------------------------------- /src/devices/backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/backlight.cpp -------------------------------------------------------------------------------- /src/devices/backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/backlight.h -------------------------------------------------------------------------------- /src/devices/devfreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/devfreq.cpp -------------------------------------------------------------------------------- /src/devices/devfreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/devfreq.h -------------------------------------------------------------------------------- /src/devices/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/device.cpp -------------------------------------------------------------------------------- /src/devices/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/device.h -------------------------------------------------------------------------------- /src/devices/gpu_rapl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/gpu_rapl_device.cpp -------------------------------------------------------------------------------- /src/devices/gpu_rapl_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/gpu_rapl_device.h -------------------------------------------------------------------------------- /src/devices/i915-gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/i915-gpu.cpp -------------------------------------------------------------------------------- /src/devices/i915-gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/i915-gpu.h -------------------------------------------------------------------------------- /src/devices/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/network.cpp -------------------------------------------------------------------------------- /src/devices/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/network.h -------------------------------------------------------------------------------- /src/devices/rfkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/rfkill.cpp -------------------------------------------------------------------------------- /src/devices/rfkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/rfkill.h -------------------------------------------------------------------------------- /src/devices/runtime_pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/runtime_pm.cpp -------------------------------------------------------------------------------- /src/devices/runtime_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/runtime_pm.h -------------------------------------------------------------------------------- /src/devices/thinkpad-fan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/thinkpad-fan.cpp -------------------------------------------------------------------------------- /src/devices/thinkpad-fan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/thinkpad-fan.h -------------------------------------------------------------------------------- /src/devices/thinkpad-light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/thinkpad-light.cpp -------------------------------------------------------------------------------- /src/devices/thinkpad-light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/thinkpad-light.h -------------------------------------------------------------------------------- /src/devices/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/usb.cpp -------------------------------------------------------------------------------- /src/devices/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devices/usb.h -------------------------------------------------------------------------------- /src/devlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devlist.cpp -------------------------------------------------------------------------------- /src/devlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/devlist.h -------------------------------------------------------------------------------- /src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/display.cpp -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/display.h -------------------------------------------------------------------------------- /src/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/lib.cpp -------------------------------------------------------------------------------- /src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/lib.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/measurement/acpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/acpi.cpp -------------------------------------------------------------------------------- /src/measurement/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/acpi.h -------------------------------------------------------------------------------- /src/measurement/extech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/extech.cpp -------------------------------------------------------------------------------- /src/measurement/extech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/extech.h -------------------------------------------------------------------------------- /src/measurement/measurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/measurement.cpp -------------------------------------------------------------------------------- /src/measurement/measurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/measurement.h -------------------------------------------------------------------------------- /src/measurement/opal-sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/opal-sensors.cpp -------------------------------------------------------------------------------- /src/measurement/opal-sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/opal-sensors.h -------------------------------------------------------------------------------- /src/measurement/sysfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/sysfs.cpp -------------------------------------------------------------------------------- /src/measurement/sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/measurement/sysfs.h -------------------------------------------------------------------------------- /src/parameters/learn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/parameters/learn.cpp -------------------------------------------------------------------------------- /src/parameters/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/parameters/parameters.cpp -------------------------------------------------------------------------------- /src/parameters/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/parameters/parameters.h -------------------------------------------------------------------------------- /src/parameters/persistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/parameters/persistent.cpp -------------------------------------------------------------------------------- /src/perf/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/perf/perf.cpp -------------------------------------------------------------------------------- /src/perf/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/perf/perf.h -------------------------------------------------------------------------------- /src/perf/perf_bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/perf/perf_bundle.cpp -------------------------------------------------------------------------------- /src/perf/perf_bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/perf/perf_bundle.h -------------------------------------------------------------------------------- /src/perf/perf_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/perf/perf_event.h -------------------------------------------------------------------------------- /src/powertop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/powertop.css -------------------------------------------------------------------------------- /src/process/do_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/do_process.cpp -------------------------------------------------------------------------------- /src/process/interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/interrupt.cpp -------------------------------------------------------------------------------- /src/process/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/interrupt.h -------------------------------------------------------------------------------- /src/process/powerconsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/powerconsumer.cpp -------------------------------------------------------------------------------- /src/process/powerconsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/powerconsumer.h -------------------------------------------------------------------------------- /src/process/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/process.cpp -------------------------------------------------------------------------------- /src/process/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/process.h -------------------------------------------------------------------------------- /src/process/processdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/processdevice.cpp -------------------------------------------------------------------------------- /src/process/processdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/processdevice.h -------------------------------------------------------------------------------- /src/process/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/timer.cpp -------------------------------------------------------------------------------- /src/process/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/timer.h -------------------------------------------------------------------------------- /src/process/work.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/work.cpp -------------------------------------------------------------------------------- /src/process/work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/process/work.h -------------------------------------------------------------------------------- /src/report/report-data-html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-data-html.cpp -------------------------------------------------------------------------------- /src/report/report-data-html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-data-html.h -------------------------------------------------------------------------------- /src/report/report-formatter-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter-base.cpp -------------------------------------------------------------------------------- /src/report/report-formatter-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter-base.h -------------------------------------------------------------------------------- /src/report/report-formatter-csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter-csv.cpp -------------------------------------------------------------------------------- /src/report/report-formatter-csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter-csv.h -------------------------------------------------------------------------------- /src/report/report-formatter-html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter-html.cpp -------------------------------------------------------------------------------- /src/report/report-formatter-html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter-html.h -------------------------------------------------------------------------------- /src/report/report-formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-formatter.h -------------------------------------------------------------------------------- /src/report/report-maker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-maker.cpp -------------------------------------------------------------------------------- /src/report/report-maker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report-maker.h -------------------------------------------------------------------------------- /src/report/report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report.cpp -------------------------------------------------------------------------------- /src/report/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/report/report.h -------------------------------------------------------------------------------- /src/tuning/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/bluetooth.cpp -------------------------------------------------------------------------------- /src/tuning/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/bluetooth.h -------------------------------------------------------------------------------- /src/tuning/ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/ethernet.cpp -------------------------------------------------------------------------------- /src/tuning/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/ethernet.h -------------------------------------------------------------------------------- /src/tuning/iw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/iw.c -------------------------------------------------------------------------------- /src/tuning/iw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/iw.h -------------------------------------------------------------------------------- /src/tuning/nl80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/nl80211.h -------------------------------------------------------------------------------- /src/tuning/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/runtime.cpp -------------------------------------------------------------------------------- /src/tuning/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/runtime.h -------------------------------------------------------------------------------- /src/tuning/tunable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tunable.cpp -------------------------------------------------------------------------------- /src/tuning/tunable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tunable.h -------------------------------------------------------------------------------- /src/tuning/tuning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuning.cpp -------------------------------------------------------------------------------- /src/tuning/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuning.h -------------------------------------------------------------------------------- /src/tuning/tuningi2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuningi2c.cpp -------------------------------------------------------------------------------- /src/tuning/tuningi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuningi2c.h -------------------------------------------------------------------------------- /src/tuning/tuningsysfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuningsysfs.cpp -------------------------------------------------------------------------------- /src/tuning/tuningsysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuningsysfs.h -------------------------------------------------------------------------------- /src/tuning/tuningusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuningusb.cpp -------------------------------------------------------------------------------- /src/tuning/tuningusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/tuningusb.h -------------------------------------------------------------------------------- /src/tuning/wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/wifi.cpp -------------------------------------------------------------------------------- /src/tuning/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/tuning/wifi.h -------------------------------------------------------------------------------- /src/wakeup/waketab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/waketab.cpp -------------------------------------------------------------------------------- /src/wakeup/wakeup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/wakeup.cpp -------------------------------------------------------------------------------- /src/wakeup/wakeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/wakeup.h -------------------------------------------------------------------------------- /src/wakeup/wakeup_ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/wakeup_ethernet.cpp -------------------------------------------------------------------------------- /src/wakeup/wakeup_ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/wakeup_ethernet.h -------------------------------------------------------------------------------- /src/wakeup/wakeup_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/wakeup_usb.cpp -------------------------------------------------------------------------------- /src/wakeup/wakeup_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenrus75/powertop/HEAD/src/wakeup/wakeup_usb.h --------------------------------------------------------------------------------