-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jaroslav Škarvada <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,16 +35,16 @@ | |
%global git_suffix %{git_date}git%{git_short_commit} | ||
%endif | ||
|
||
#%%global prerelease rc | ||
#%%global prereleasenum 1 | ||
%global prerelease rc | ||
%global prereleasenum 1 | ||
|
||
%global prerel1 %{?prerelease:.%{prerelease}%{prereleasenum}} | ||
%global prerel2 %{?prerelease:-%{prerelease}.%{prereleasenum}} | ||
|
||
Summary: A dynamic adaptive system tuning daemon | ||
Name: tuned | ||
Version: 2.12.0 | ||
Release: 1%{?prerel1}%{?with_snapshot:.%{git_suffix}}%{?dist} | ||
Version: 2.13.0 | ||
Release: 0.1%{?prerel1}%{?with_snapshot:.%{git_suffix}}%{?dist} | ||
License: GPLv2+ | ||
Source0: https://github.com/redhat-performance/%{name}/archive/v%{version}%{?prerel2}/%{name}-%{version}%{?prerel2}.tar.gz | ||
URL: http://www.tuned-project.org/ | ||
|
@@ -500,6 +500,25 @@ fi | |
%{_mandir}/man7/tuned-profiles-compat.7* | ||
|
||
%changelog | ||
* Sun Dec 1 2019 Jaroslav Škarvada <[email protected]> - 2.13.0-0.1.rc1 | ||
- new release | ||
- rebased tuned to latest upstream | ||
resolves: rhbz#1738250 | ||
- cpu: fixed checking if EPB is supported | ||
resolves: rhbz#1690929 | ||
- scheduler: fixed IRQ SMP affinity verification to respect ignore_missing | ||
resolves: rhbz#1729936 | ||
- realtime: enabled ktimer_lockless_check | ||
resolves: rhbz#1734096 | ||
- plugins: support cpuinfo_regex and uname_regex matching | ||
resolves: rhbz#1748965 | ||
- sysctl: made reapply_sysctl ignore configs from /usr | ||
resolves: rhbz#1759597 | ||
- added support for multiple include directives | ||
resolves: rhbz#1760390 | ||
- realtime: added nowatchdog kernel command line option | ||
resolves: rhbz#1767614 | ||
|
||
* Thu Jun 27 2019 Jaroslav Škarvada <[email protected]> - 2.12.0-1 | ||
- new release | ||
- rebased tuned to latest upstream | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TUNED_VERSION_MAJOR = 2 | ||
TUNED_VERSION_MINOR = 12 | ||
TUNED_VERSION_MINOR = 13 | ||
TUNED_VERSION_PATCH = 0 |