|
@@ -0,0 +1,74 @@
|
|
|
|
+%global _hardened_build 1
|
|
|
|
+%define debug_package %{nil}
|
|
|
|
+
|
|
|
|
+Name: throttled
|
|
|
|
+Version: 0.6
|
|
|
|
+Release: 2
|
|
|
|
+Summary: Workaround for Intel throttling issues in Linux
|
|
|
|
+License: MIT
|
|
|
|
+URL: https://github.com/erpalma/throttled
|
|
|
|
+Source0: https://github.com/erpalma/throttled/archive/v%{version}.tar.gz
|
|
|
|
+
|
|
|
|
+BuildRequires: python3-devel
|
|
|
|
+BuildRequires: systemd-units
|
|
|
|
+
|
|
|
|
+Requires: python3
|
|
|
|
+Requires: python3-gobject
|
|
|
|
+Requires: python3-configparser
|
|
|
|
+Requires: systemd
|
|
|
|
+
|
|
|
|
+Conflicts: thermald
|
|
|
|
+
|
|
|
|
+%description
|
|
|
|
+This tool was originally developed to fix Linux CPU throttling issues affecting
|
|
|
|
+Lenovo T480 / T480s / X1C6.
|
|
|
|
+
|
|
|
|
+The CPU package power limit (PL1/2) is forced to a value of 44 W (29 W on
|
|
|
|
+battery) and the temperature trip point to 95 'C (85 'C on battery) by
|
|
|
|
+overriding default values in MSR and MCHBAR every 5 seconds (30 on battery) to
|
|
|
|
+block the Embedded Controller from resetting these values to default.
|
|
|
|
+
|
|
|
|
+%prep
|
|
|
|
+%autosetup
|
|
|
|
+
|
|
|
|
+%build
|
|
|
|
+
|
|
|
|
+%install
|
|
|
|
+install -D lenovo_fix.py %{buildroot}/%{_bindir}/%{name}
|
|
|
|
+install -D mmio.py %{buildroot}/%{python3_sitelib}/mmio.py
|
|
|
|
+install -D etc/lenovo_fix.conf %{buildroot}/%{_sysconfdir}/%{name}.conf
|
|
|
|
+install -D systemd/lenovo_fix.service %{buildroot}/%{_unitdir}/%{name}.service
|
|
|
|
+
|
|
|
|
+%post
|
|
|
|
+%systemd_post %{name}.service
|
|
|
|
+
|
|
|
|
+%preun
|
|
|
|
+%systemd_preun %{name}.service
|
|
|
|
+
|
|
|
|
+%postun
|
|
|
|
+%systemd_postun_with_restart %{name}.service
|
|
|
|
+
|
|
|
|
+%files
|
|
|
|
+%defattr(-,root,root,-)
|
|
|
|
+%attr(755, root, root) %{_bindir}/%{name}
|
|
|
|
+%attr(644, root, root) %{python3_sitelib}/mmio.py
|
|
|
|
+%attr(644, root, root) %{python3_sitelib}/__pycache__/*
|
|
|
|
+%config(noreplace) %attr(640, %{name}, %{name}) %{_sysconfdir}/%{name}.conf
|
|
|
|
+%attr(644, root, root) %{_unitdir}/%{name}.service
|
|
|
|
+
|
|
|
|
+%changelog
|
|
|
|
+* Thu May 02 2019 Arun Babu Neelicattu <arun.neelicattu@twyla.ai> - 0.6-1
|
|
|
|
+- Upgrade to 0.6
|
|
|
|
+
|
|
|
|
+* Mon Mar 11 2019 Arun Babu Neelicattu <arun.neelicattu@gmail.com> - 0.5-4
|
|
|
|
+- Add conflict for thermald
|
|
|
|
+
|
|
|
|
+* Mon Mar 11 2019 Arun Babu Neelicattu <arun.neelicattu@gmail.com> - 0.5-3
|
|
|
|
+- Fix unit file to use configuration
|
|
|
|
+
|
|
|
|
+* Mon Mar 11 2019 Arun Babu Neelicattu <arun.neelicattu@gmail.com> - 0.5-2
|
|
|
|
+- Add default configuration file
|
|
|
|
+- Fix file permissions
|
|
|
|
+
|
|
|
|
+* Mon Mar 11 2019 Arun Babu Neelicattu <arun.neelicattu@gmail.com> - 0.5-1
|
|
|
|
+- Initial release of version 0.5
|