1 |
# $Id: appletalk-kmod.spec,v 1.24 2009/10/28 18:42:31 slords Exp $ |
# $Id: appletalk-kmod.spec,v 1.25 2010/04/21 16:05:43 slords Exp $ |
2 |
|
|
3 |
# Define the kmod package name here. |
# Define the kmod package name here. |
4 |
%define kmod_name appletalk |
%define kmod_name appletalk |
5 |
|
|
6 |
# hint: this can he overridden with "--define kversion foo" on the rpmbuild command line, e.g. |
# hint: this can he overridden with "--define kversion foo" on the rpmbuild command line, e.g. |
7 |
# --define "kversion 2.6.16-1.2096_FC5" |
# --define "kversion 2.6.16-1.2096_FC5" |
8 |
%{!?kversion: %define kversion 2.6.9-89.0.15.EL} |
%{!?kversion: %define kversion 2.6.9-89.0.20.EL} |
9 |
|
|
10 |
Name: %{kmod_name}-kmod |
Name: %{kmod_name}-kmod |
11 |
Version: 1.0 |
Version: 1.0 |
12 |
Release: 6%{?dist} |
Release: 7%{?dist} |
13 |
Group: System Environment/Kernel |
Group: System Environment/Kernel |
14 |
License: GPL |
License: GPL |
15 |
Summary: %{kmod_name} kernel modules |
Summary: %{kmod_name} kernel modules |
88 |
|
|
89 |
# Strip the module(s). |
# Strip the module(s). |
90 |
find ${INSTALL_MOD_PATH} -type f -name \*.ko -exec strip --strip-debug \{\} \; |
find ${INSTALL_MOD_PATH} -type f -name \*.ko -exec strip --strip-debug \{\} \; |
91 |
# |
|
92 |
|
# Override where module comes from. |
93 |
|
mkdir -p ${INSTALL_MOD_PATH}/etc/depmod.d/ |
94 |
|
find ${INSTALL_MOD_PATH}/lib/modules/ -type f -name \*.ko -printf '%f\n' \ |
95 |
|
| sed 's,\.ko,,' | sort -u | xargs -ri echo "override {} * weak-updates/%{kmod_name}" \ |
96 |
|
>> ${INSTALL_MOD_PATH}/etc/depmod.d/%{kmod_name}.conf |
97 |
|
|
98 |
%clean |
%clean |
99 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
100 |
|
|
101 |
%changelog |
%changelog |
102 |
|
* Tue Jun 01 2010 Shad L. Lords <slords@mail.com> 1.0-7.sme |
103 |
|
- Make weak-updates default for pulling module [SME: 5982] |
104 |
|
- Fix previous script to not error on uninstall [SME: 5448] |
105 |
|
|
106 |
* Wed Apr 21 2010 Shad L. Lords <slords@mail.com> 1.0-6.sme |
* Wed Apr 21 2010 Shad L. Lords <slords@mail.com> 1.0-6.sme |
107 |
- Update scriptlets to not call rpm [SME: 5448] |
- Update scriptlets to not call rpm [SME: 5448] |
108 |
|
|