%define module kernel-advansys %define version 0.9.5 %define rpm_release 1 Summary: Linux kernel advansys module Name: %{module} Version: %{version} Release: %{rpm_release}dkms Group: System Environment/Kernel BuildArch: noarch URL: http://www.city-fan.org/ftp/contrib/drivers/advansys/ Source0: %{module}-%{version}.tar.bz2 License: GPLv2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: dkms >= 1.12, gcc %description This driver provides the advansys SCSI module, which has been omitted from some Fedora kernels, and also Red Hat Enterprise Linux 4 and 5. If you need the advansys module for booting (e.g. if your system is installed onto a SCSI disk attached to the Advansys card), run the following commands to build a new initrd after installing a new kernel: %{_sbindir}/dkms build -k kernelver -m %{module} -v %{version} %{_sbindir}/dkms install -k kernelver -m %{module} -v %{version} This assumes that you have a line "alias scsi_hostadapter advansys" in /etc/modprobe.conf For kernel 2.6.30 onwards, the kernel-firmware package is also required. %prep %setup -q %build %install %{__rm} -rf %{buildroot} DESTDIR=%{buildroot}%{_usrsrc}/%{module}-%{version} %{__install} -m 755 -d ${DESTDIR} %{__cp} -r kernel-source patches redhat_driver_disk ${DESTDIR} for f in dkms.conf Makefile kernel-advansys.spec README do %{__install} -m 644 $f ${DESTDIR} done for f in *.sh do %{__install} -m 755 $f ${DESTDIR} done %clean %{__rm} -rf %{buildroot} %files %defattr(-,root,root) %doc README %{_usrsrc}/%{module}-%{version} %post # Add it (build and install it for currently running kernel) /usr/sbin/dkms add -m %{module} -v %{version} --rpm_safe_upgrade if [ -e /lib/modules/`uname -r`/build/include ]; then /usr/sbin/dkms build -m %{module} -v %{version} /usr/sbin/dkms install -m %{module} -v %{version} else echo -e "Module build for the currently running kernel was skipped" echo -e "since the kernel source for this kernel does not seem to be" echo -e "installed." fi exit 0 %preun echo -e "Uninstall of %{module} (version %{version}) beginning:" /usr/sbin/dkms remove -m %{module} -v %{version} --all --rpm_safe_upgrade exit 0 %changelog * Tue Apr 13 2010 Paul Howarth 0.9.5-1dkms - add support for RHEL 5.4, RHEL 5.5 - add support for Fedora kernels up to 2.6.33 - note that for kernel 2.6.30 onwards, the firmware has been removed from the kernel module and is now found in the kernel-firmware package, which must be installed for the module to work * Wed Jun 3 2009 Paul Howarth 0.9.4-1dkms - add support for RHEL 4.6, RHEL 4.7, RHEL 4.8, RHEL 5.2, RHEL 5.3 - add support for Fedora kernels up to 2.6.29 - add src-prep directory and helper script for prepping new kernels - include README as %%doc - relicense as GPLv2 to match kernel - drop BUILD_EXCLUSIVE_KERNEL so that we can build for all Fedora kernels; this allows us to try to build for architectures other than x86-32, though whether this works or not is another matter (i.e. it's untested) * Mon Feb 4 2008 Paul Howarth 0.9.3-2dkms - support RHEL 5.1 (0.9.2 module fails to build) * Wed Jul 18 2007 Paul Howarth 0.9.2-1dkms - experimental support for RHEL 4, 5, and derivatives - don't use macros in command paths, hardcode them instead - remove buildroot unconditionally in %%install and %%clean - unpack tarball quietly - include (empty) %%build section - add URL * Thu Mar 17 2005 Paul Howarth 0.9.1-1 - explicity run dkms from %%{_sbindir} so that goobers that do "su" instead of "su -" and don't get %%{_sbindir} on their PATH don't come whingeing that it doesn't work * Fri Feb 4 2005 Paul Howarth 0.9.0-1 - advansys module is back in Fedora errata kernels - start wrapping up the project - add BUILD_EXCLUSIVE_KERNEL parameter to dkms.conf so that module is not built when not needed - tidy up pre-build script: - no need to support 2.7.x kernels - apply patches quietly * Wed Jan 12 2005 Paul Howarth 0.5.3-1 - update to support 2.6.10-1.737 kernel for Fedora Core 3 * Tue Jan 4 2005 Paul Howarth 0.5.2-1 - update to support 2.6.9-1.724 kernel for Fedora Core 3 - added gcc dependency * Thu Nov 4 2004 Paul Howarth 0.5.1-1 - add facility to pre_build.sh to copy required source code to current directory - useful for building new versions - update to support 2.6.9 kernel for Fedora Core 3 * Mon Sep 27 2004 Paul Howarth 0.5.0-1 - add code to build scsi_mod.o as well as advansys.o; this enables us to get the right dependency information included in advansys.ko when doing cross-architecture builds * Fri Sep 24 2004 Paul Howarth 0.4.3-1 - add another patch to bring source up to 2.6.8 kernel revision * Fri Aug 27 2004 Paul Howarth 0.4.2-1 - use default dkms make command instead of specifying our own * Thu Aug 26 2004 Paul Howarth 0.4.1-1 - don't make adjustments to modules/modprobe.conf - only remake initrd if /etc/modprobe.conf has a scsi_hostadapter advansys entry - see README for reasoning behind these changes * Mon Aug 23 2004 Paul Howarth 0.4-1 - turn autoinstall back on, can be useful sometimes - dkms postinstall script added to set up bootloader if possible - kernel source now stored as FC2 base plus patches to save space * Tue Aug 16 2004 Paul Howarth 0.3-1 - add support for dkms redhat driver disk creation (experimental) * Thu Aug 5 2004 Paul Howarth 0.2-1 - try to grab updated module source from kernel-sourcecode, if available - make module permission 744 so that RPM will strip it - turn off autoinstall for the module, not really appropriate * Wed Aug 4 2004 Paul Howarth 0.1-1 - initial packaging in RPM format