commit 87d0d1ff810643f6a585fab13c779b525aa14eb0d354e3ac94fb96fcb279ca00 Author: Michal Suchanek Date: Mon Jan 25 15:30:08 2021 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/_service b/_service new file mode 100644 index 0000000..7cdb237 --- /dev/null +++ b/_service @@ -0,0 +1,15 @@ + + + + + + git + https://github.com/Mellanox/mlxbf-bootctl.git + mlxbf-bootctl + mlxbf-bootctl-(.*)-(.*) + \1.\2 + @PARENT_TAG@.@TAG_OFFSET@ + + + + diff --git a/mlxbf-bootctl-1.1.6.11.obscpio b/mlxbf-bootctl-1.1.6.11.obscpio new file mode 100644 index 0000000..27ffcdb --- /dev/null +++ b/mlxbf-bootctl-1.1.6.11.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf597f1a158c9af6bb55d2998d2da033cfdba54ff673b9870f4d21b67cb6ec24 +size 50186 diff --git a/mlxbf-bootctl.changes b/mlxbf-bootctl.changes new file mode 100644 index 0000000..5f0a38c --- /dev/null +++ b/mlxbf-bootctl.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Jan 22 07:27:26 UTC 2021 - Matthias Brugger + +- Add package (jsc#SLE-16098 jsc#SLE-16108) diff --git a/mlxbf-bootctl.obsinfo b/mlxbf-bootctl.obsinfo new file mode 100644 index 0000000..c397237 --- /dev/null +++ b/mlxbf-bootctl.obsinfo @@ -0,0 +1,5 @@ +name: mlxbf-bootctl +version: 1.1.6.11 +mtime: 1601841854 +commit: b6dd3501668c45020f1e81690cd53aa6e21289b0 + diff --git a/mlxbf-bootctl.spec b/mlxbf-bootctl.spec new file mode 100644 index 0000000..b3e3ea1 --- /dev/null +++ b/mlxbf-bootctl.spec @@ -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