mpt-firmware/mpt-firmware.spec

93 lines
3.2 KiB
RPMSpec
Raw Normal View History

#
# spec file for package mpt-firmware (Version 1.0)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: mpt-firmware
Summary: Configuration files for autoloading mptctl at boot time.
Version: 1.0
Release: 2
License: GNU General Public License (GPL)
Group: Hardware/Other
BuildRequires: kernel-default sysconfig
Requires: sysconfig
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: hwcfg-mptspi
Source1: hwcfg-mptfc
Source2: hwcfg-mptsas
Source3: update-pci-id-list.sh
# Module: mptspi.ko
Supplements: modalias(pci:v00001000d00000030sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000032sv*sd*bc*sc*i*)
# Module: mptfc.ko
Supplements: modalias(pci:v00001000d00000621sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000624sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000622sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000628sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000626sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000642sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000640sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000646sv*sd*bc*sc*i*)
# Module: mptsas.ko
Supplements: modalias(pci:v00001000d00000050sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d0000005Esv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000054sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000056sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d0000005Asv*sd*bc*sc*i*)
Supplements: modalias(pci:v00001000d00000058sv*sd*bc*sc*i*)
# end of supplements list
%prep
%build
# There is nothing to build
%install
mkdir -p $RPM_BUILD_ROOT/etc/sysconfig/hardware
for pid in $(grep mptspi /lib/modules/*/modules.alias | sed 's/.*d0000\(.*\)sv.*/\1/g' | tr [A-F] [a-f]); do
cp %{S:0} $RPM_BUILD_ROOT/etc/sysconfig/hardware/hwcfg-vpid-1000-$pid
done
for pid in $(grep mptfc /lib/modules/*/modules.alias | sed 's/.*d0000\(.*\)sv.*/\1/g' | tr [A-F] [a-f]); do
cp %{S:1} $RPM_BUILD_ROOT/etc/sysconfig/hardware/hwcfg-vpid-1000-$pid
done
for pid in $(grep mptsas /lib/modules/*/modules.alias | sed 's/.*d0000\(.*\)sv.*/\1/g' | tr [A-F] [a-f]); do
cp %{S:2} $RPM_BUILD_ROOT/etc/sysconfig/hardware/hwcfg-vpid-1000-$pid
done
%description
This package contains hardware configuration files that autoload the
mptctl ioctl driver at boot time. The mptctl driver is an ioctl
character driver for the LSI Logic Fusion-MPT Host adapter
series. These adapters include - Ultra320 53C1030, 53C1020
- Fiber Channel FC909, FC919, FC929, FC919X and FC929X
- SAS SAS1064, and SAS1068
Authors:
--------
Eric Moore <emoore@lsil.com>
%files
%defattr(0644,root,root)
/etc/sysconfig/hardware/*
%changelog -n mpt-firmware
* Mon Nov 13 2006 - hare@suse.de
- Create hwcfg files based on the modalias provided by the
respective modules.
* Tue Oct 17 2006 - hare@suse.de
- Create files dynamically
* Tue Sep 12 2006 - Eric.Moore@lsil.com
- Initial creation of this rpm (FATE 300676).