1
0
forked from pool/mlxbf-bootctl

Accepting request 866621 from home:mbrugger

- mlxbf-bootctl is used to control the two boot firmware partitions present on most Mellanox BlueField devices.

OBS-URL: https://build.opensuse.org/request/show/866621
OBS-URL: https://build.opensuse.org/package/show/hardware/mlxbf-bootctl?expand=0&rev=1
This commit is contained in:
Michal Suchanek 2021-01-25 15:30:08 +00:00 committed by Git OBS Bridge
commit 87d0d1ff81
7 changed files with 103 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

15
_service Normal file
View File

@ -0,0 +1,15 @@
<!-- See https://en.opensuse.org/openSUSE:Build_Service_Concept_SourceService -->
<!-- for more details on the syntax -->
<services>
<service name="obs_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://github.com/Mellanox/mlxbf-bootctl.git</param>
<param name="filename">mlxbf-bootctl</param>
<param name="versionrewrite-pattern">mlxbf-bootctl-(.*)-(.*)</param>
<param name="versionrewrite-replacement">\1.\2</param>
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@</param>
</service>
<service mode="disabled" name="set_version" />
<service name="tar" mode="buildtime"/>
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cf597f1a158c9af6bb55d2998d2da033cfdba54ff673b9870f4d21b67cb6ec24
size 50186

4
mlxbf-bootctl.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Fri Jan 22 07:27:26 UTC 2021 - Matthias Brugger <mbrugger@suse.com>
- Add package (jsc#SLE-16098 jsc#SLE-16108)

5
mlxbf-bootctl.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: mlxbf-bootctl
version: 1.1.6.11
mtime: 1601841854
commit: b6dd3501668c45020f1e81690cd53aa6e21289b0

52
mlxbf-bootctl.spec Normal file
View File

@ -0,0 +1,52 @@
#
# spec file for package rshim
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2019 Mellanox Technologies. All Rights Reserved.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: mlxbf-bootctl
Version: 1.1.6.11
Release: 0
Summary: User-space driver for Mellanox BlueField SoC
License: BSD-2-Clause
Group: System/Management
URL: https://github.com/Mellanox/mlxbf-bootctl.git
Source0: %{name}-%{version}.tar
ExclusiveArch: aarch64
%description
mlxbf-bootctl is used to control the two boot firmware partitions present on most Mellanox BlueField devices.
%prep
%setup -q
%build
%make_build
%install
ls -l
mkdir -p %{buildroot}%{_sbindir}
install -c -m 0755 mlxbf-bootctl %{buildroot}%{_sbindir}
install -d %{buildroot}%{_mandir}/man8
install -m 0644 %{name}.8 %{buildroot}%{_mandir}/man8
%files
%license LICENSE
%doc README.md
%{_sbindir}/%{name}
%{_mandir}/man8/%{name}.8%{?ext_man}
%changelog