Compare commits

...

6 Commits

Author SHA1 Message Date
openeuler-ci-bot cadc2b0389 !71 Upgrade to 5.2
From: @wangxiao65 
Reviewed-by: @SuperSix173 
Signed-off-by: @SuperSix173
2024-12-17 07:41:21 +00:00
wangxiao65 4821c98fab Upgrade to 5.2 2024-12-05 12:11:00 +00:00
openeuler-ci-bot f13998008c !66 [sync] PR-61: Make stp_task_work compatible with 6.11 kernels
From: @openeuler-sync-bot 
Reviewed-by: @liqingqing_1229 
Signed-off-by: @liqingqing_1229
2024-11-05 08:03:08 +00:00
wangxiao65 7431e24c5a Make stp task work compatable with 6.11 kernels
(cherry picked from commit 608e39de48)
2024-10-20 21:44:58 +08:00
openeuler-ci-bot 5e421e85fb !54 [sync] PR-53: add loongarch64 support
From: @openeuler-sync-bot 
Reviewed-by: @SuperSix173 
Signed-off-by: @SuperSix173
2024-08-15 07:30:16 +00:00
wangqiang 28733c94fe Add basic LoongArch64 support
(cherry picked from commit db9f088765)
2024-08-15 13:48:45 +08:00
4 changed files with 2463 additions and 1 deletions
File diff suppressed because it is too large Load Diff
Binary file not shown.
Binary file not shown.
+21 -1
View File
@@ -21,7 +21,7 @@
%undefine __brp_mangle_shebangs
Name: systemtap
Version: 5.0
Version: 5.2
Release: 1
Summary: Linux trace and probe tool
License: GPLv2+ and Public Domain
@@ -30,6 +30,7 @@ Source: https://sourceware.org/systemtap/ftp/releases/%{name}-%{version}.tar.gz
Patch9000: huawei-fix-network-tcp-test-error.patch
Patch9001: huawei-local-is-only-valid-in-functions-for-shellche-sc2168.patch
Patch9002: Add-basic-LoongArch64-support.patch
BuildRequires: gcc-c++ emacs systemd python3-setuptools
BuildRequires: gettext-devel rpm-devel readline-devel
@@ -275,6 +276,10 @@ install -m 644 stap-exporter/stap-exporter.8* $RPM_BUILD_ROOT%{_mandir}/man8
getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr
getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys
getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev
getent group stapunpriv >/dev/null || groupadd -g 159 -r stapunpriv 2>/dev/null || groupadd -r stapunpriv
getent passwd stapunpriv >/dev/null || \
useradd -c "Systemtap Unprivileged User" -u 159 -g stapunpriv -d %{_localstatedir}/lib/stapunpriv -r -s /sbin/nologin stapunpriv 2>/dev/null || \
useradd -c "Systemtap Unprivileged User" -g stapunpriv -d %{_localstatedir}/lib/stapunpriv -r -s /sbin/nologin stapunpriv
exit 0
%pre server
@@ -477,6 +482,21 @@ exit 0
%{_mandir}/man[1378]/*
%changelog
* Thu Dec 05 2024 wangxiao <wangxiao184@h-partners.com> - 5.2-1
- Upgrade to 5.2
* Wed Sep 04 2024 wangxiao <wangxiao184@h-partners.com> - 5.0-3
- Type:bugfix
- CVE:NA
- SUG:NA
- DESC:Make stp_task_work compatible with 6.11 kernels
* Fri Jul 05 2024 wangqiang <wangqiang1@kylinos.cn> - 5.0-2
- Type:update
- CVE:NA
- SUG:NA
- DESC:Add basic loongarch64 support
* Wed Jan 24 2024 liuchao <liuchao173@huawei.com> - 5.0-1
- Upgrade to 5.0:
- Performance improvements in uprobe registration and module startup.