Compare commits

...

No commits in common. "c10s" and "c8" have entirely different histories.
c10s ... c8

8 changed files with 152 additions and 131 deletions

7
.gitignore vendored
View File

@ -1,6 +1 @@
/rshim-2.0.4.tar.gz
/rshim-2.0.6-19.tar.gz
/rshim-2.0.7.tar.gz
/rshim-2.0.8.tar.gz
/rshim-2.0.9.tar.gz
/rshim-2.0.17.tar.gz
SOURCES/rshim-2.0.8.tar.gz

View File

@ -1,3 +0,0 @@
# rshim
The rshim package

View File

@ -0,0 +1,24 @@
From 37b1523b39d7fb0d58d57b8f58c943055b1e83e2 Mon Sep 17 00:00:00 2001
From: Jeffrey Bastian <jbastian@redhat.com>
Date: Tue, 6 Apr 2021 14:24:16 -0500
Subject: [PATCH] add rshim sysconfig file for setting
---
rshim.service | 1 +
1 file changed, 1 insertion(+)
diff --git a/rshim.service b/rshim.service
index 84f0e2f49eba..7539133f869c 100644
--- a/rshim.service
+++ b/rshim.service
@@ -9,6 +9,7 @@ After=network.target
[Service]
Restart=always
Type=forking
+EnvironmentFile=-/etc/sysconfig/rshim
ExecStart=-/usr/sbin/rshim $OPTIONS
KillMode=control-group
--
2.26.3

127
SPECS/rshim.spec Normal file
View File

@ -0,0 +1,127 @@
# SPDX-License-Identifier: GPL-2.0-only
# Copyright (C) 2019 Mellanox Technologies. All Rights Reserved.
#
Name: rshim
Version: 2.0.8
Release: 1%{?dist}
Summary: User-space driver for Mellanox BlueField SoC
License: GPLv2
URL: https://github.com/mellanox/rshim-user-space
Source0: https://github.com/Mellanox/rshim-user-space/archive/refs/tags/%{name}-%{version}.tar.gz#/%{name}-%{version}.tar.gz
Patch0: rshim-sysconfig.patch
BuildRequires: gcc, autoconf, automake, make
BuildRequires: pkgconfig(libpci), pkgconfig(libusb-1.0), pkgconfig(fuse)
BuildRequires: systemd
BuildRequires: systemd-rpm-macros
Requires: kmod(cuse.ko)
Suggests: kernel-modules-extra
%description
This is the user-space driver to access the BlueField SoC via the rshim
interface. It provides ways to push boot stream, debug the target or login
via the virtual console or network interface.
%prep
%autosetup -p1 -n rshim-user-space-%{name}-%{version}
%build
./bootstrap.sh
%configure
%make_build
%install
%make_install
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
cat > $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/rshim <<EOF
# Command-line options for rshim
OPTIONS=""
EOF
%post
%systemd_post rshim.service
%preun
%systemd_preun rshim.service
%postun
%systemd_postun_with_restart rshim.service
%files
%license LICENSE
%doc README.md
%config(noreplace) %{_sysconfdir}/rshim.conf
%config(noreplace) %{_sysconfdir}/sysconfig/rshim
%{_sbindir}/rshim
%{_sbindir}/bfb-install
%{_unitdir}/rshim.service
%{_mandir}/man8/rshim.8.gz
%{_mandir}/man8/bfb-install.8.gz
%changelog
* Tue May 23 2023 Dean Nelson <dnelson@redhat.com> - 2.0.8-1
- Update user-space rshim driver source to version 2.0.8
- Modify rshim.spec accordingly
- Resolves: rhbz#2196852
* Tue Apr 20 2021 Dean Nelson <dnelson@redhat.com> - 2.0.5-2
- Add sysconfig/rshim file and update rshim.service to source it.
- jbastian made the first cut of this patch, which needed to be
modified due to the update to 2.0.5. And I chose to go with
%%autosetup to handle Patch0, instead of sticking with %%setup.
- Resolves: rhbz#1946349
* Tue Apr 20 2021 Dean Nelson <dnelson@redhat.com> - 2.0.5-1
- Update user-space rshim driver source to version 2.0.5.
- Modify rshim.spec accordingly.
- Resolves: rhbz#1950425
* Tue Jan 26 2021 Dean Nelson <dnelson@redhat.com> - 2.0.4-4
- Expose gating.yaml file in order to enable manual CI gating for rshim
in RHEL-8.4, by bumping release and doing a Brew build.
- Partially resolves: rhbz#1912248
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-3
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Apr 21 2020 Liming Sun <lsun@mellanox.com> - 2.0.4-1
- Update .spec file according to review comments
- Fix the 'KillMode' in rshim.service
- Support process termination by SIGTERM
- Fix some compiling warnings and configure issue for FreeBSD
- Fix a read()/write() issue in rshim_pcie.c caused by optimization
* Tue Apr 14 2020 Liming Sun <lsun@mellanox.com> - 2.0.3-1
- Enable pci device during probing
- Map the pci resource0 file instead of /dev/mem
- Add copyright header in bootstrap.sh
- Add 'Requires' tag check in the rpm .spec for kernel-modules-extra
- Fix the 'rshim --version' output
* Thu Apr 09 2020 Liming Sun <lsun@mellanox.com> - 2.0.2-1
- Remove unnecessary dependency in .spec and use make_build
- Add package build for debian/ubuntu
- Fix some format in the man page
- Add check for syslog headers
* Mon Mar 23 2020 Liming Sun <lsun@mellanox.com> - 2.0.1-1
- Rename bfrshim to rshim
- Remove rshim.spec since it's auto-generated from rshim.spec.in
- Fix warnings reported by coverity
- Add rhel/rshim.spec.in for fedora
- Move rshim to sbin and move man page to man8
* Fri Mar 13 2020 Liming Sun <lsun@mellanox.com> - 2.0-1
- Update the spec file according to fedora packaging-guidelines
* Mon Dec 16 2019 Liming Sun <lsun@mellanox.com>
- Initial packaging

View File

@ -1,58 +0,0 @@
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.0.4-5
- Rebuilt for updated systemd-rpm-macros
See https://pagure.io/fesco/issue/2583.
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-3
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Apr 21 2020 Liming Sun <lsun@mellanox.com> - 2.0.4-1
- Update .spec file according to review comments
- Fix the 'KillMode' in rshim.service
- Support process termination by SIGTERM
- Fix some compiling warnings and configure issue for FreeBSD
- Fix a read()/write() issue in rshim_pcie.c caused by optimization
* Tue Apr 14 2020 Liming Sun <lsun@mellanox.com> - 2.0.3-1
- Enable pci device during probing
- Map the pci resource0 file instead of /dev/mem
- Add copyright header in bootstrap.sh
- Add 'Requires' tag check in the rpm .spec for kernel-modules-extra
- Fix the 'rshim --version' output
* Thu Apr 09 2020 Liming Sun <lsun@mellanox.com> - 2.0.2-1
- Remove unnecessary dependency in .spec and use make_build
- Add package build for debian/ubuntu
- Fix some format in the man page
- Add check for syslog headers
* Mon Mar 23 2020 Liming Sun <lsun@mellanox.com> - 2.0.1-1
- Rename bfrshim to rshim
- Remove rshim.spec since it's auto-generated from rshim.spec.in
- Fix warnings reported by coverity
- Add rhel/rshim.spec.in for fedora
- Move rshim to sbin and move man page to man8
* Fri Mar 13 2020 Liming Sun <lsun@mellanox.com> - 2.0-1
- Update the spec file according to fedora packaging-guidelines
* Mon Dec 16 2019 Liming Sun <lsun@mellanox.com>
- Initial packaging

View File

@ -1,6 +0,0 @@
--- !Policy
product_versions:
- rhel-10
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: kernel-qe.kernel-ci.hardware-rshim.tier0.functional}

View File

@ -1,57 +0,0 @@
# SPDX-License-Identifier: GPL-2.0-only
# Copyright (C) 2019 Mellanox Technologies. All Rights Reserved.
#
Name: rshim
Version: 2.0.17
Release: %autorelease
Summary: User-space driver for Mellanox BlueField SoC
License: GPL-2.0-only
URL: https://github.com/mellanox/rshim-user-space
Source0: https://github.com/Mellanox/rshim-user-space/archive/refs/tags/%{name}-%{version}.tar.gz
BuildRequires: gcc, autoconf, automake, make
BuildRequires: pkgconfig(libpci), pkgconfig(libusb-1.0), pkgconfig(fuse)
BuildRequires: systemd
BuildRequires: systemd-rpm-macros
Requires: kmod(cuse.ko)
Suggests: kernel-modules-extra
%description
This is the user-space driver to access the BlueField SoC via the rshim
interface. It provides ways to push boot stream, debug the target or login
via the virtual console or network interface.
%prep
%setup -q -n rshim-user-space-%{name}-%{version}
%build
./bootstrap.sh
%configure
%make_build
%install
%make_install
%post
%systemd_post rshim.service
%preun
%systemd_preun rshim.service
%postun
%systemd_postun_with_restart rshim.service
%files
%license LICENSE
%doc README.md
%config(noreplace) %{_sysconfdir}/rshim.conf
%{_sbindir}/rshim
%{_sbindir}/bfb-install
%{_unitdir}/rshim.service
%{_mandir}/man8/rshim.8.gz
%{_mandir}/man8/bfb-install.8.gz
%changelog
%autochangelog

View File

@ -1 +0,0 @@
SHA512 (rshim-2.0.17.tar.gz) = 70e5bcf83132ee962f29ec9384e161eeb9bb733688b48f5345960ac3f61e43b3b160cac0981dacaeb236badc2c81bbf21d1594a89a5c024e3bc9a361b71a67a5