From 33108b82fca55e1926161d7f9902b39e75dacc8d Mon Sep 17 00:00:00 2001 From: Bernhard M. Wiedemann Date: Sep 13 2019 14:29:36 +0000 Subject: restructure files to remain below github limit of 1000 entries --- diff --git a/_service b/_service new file mode 100644 index 0000000..ca15fff --- /dev/null +++ b/_service @@ -0,0 +1,13 @@ + + + git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git + git + aer-inject + 0.2 + + + *.tar + xz + + + diff --git a/aer-inject.changes b/aer-inject.changes new file mode 100644 index 0000000..c164218 --- /dev/null +++ b/aer-inject.changes @@ -0,0 +1,15 @@ +------------------------------------------------------------------- +Fri Nov 6 10:27:12 UTC 2015 - fvogt@suse.com + +- Run _service + +------------------------------------------------------------------- +Fri Nov 6 10:25:11 UTC 2015 - fvogt@suse.com + +- Disable _service + +------------------------------------------------------------------- +Tue Nov 3 09:11:43 UTC 2015 - fvogt@suse.com + +- Initial commit + diff --git a/aer-inject.spec b/aer-inject.spec new file mode 100644 index 0000000..b2c1b07 --- /dev/null +++ b/aer-inject.spec @@ -0,0 +1,52 @@ +# +# spec file for package aer-inject +# +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + + +Name: aer-inject +Version: 0.2 +Release: 0 +Summary: Inject PCIE AER errors into a running kernel +License: GPL-2.0 +Group: Development/Hardware +Url: https://git.kernel.org/cgit/linux/kernel/git/gong.chen/aer-inject.git +Source: %{name}-%{version}.tar.xz +BuildRequires: bison +BuildRequires: flex +BuildRequires: gcc +BuildRequires: make +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +aer-inject allows to inject PCIE AER errors on the software level into +a running Linux kernel. This is intended for validation of the PCIE +driver error recovery handler and PCIE AER core handler. + +%prep +%setup -q + +%build +make %{?_smp_mflags} + +%install +make DESTDIR=%{buildroot} PREFIX=/usr/sbin install %{?_smp_mflags} + +%files +%defattr(-,root,root) +%{_sbindir}/aer-inject +%doc SPEC README examples + +%changelog