1 |
# $Id: slip-kmod.spec,v 1.24 2009/10/28 18:41:30 slords Exp $ |
# $Id: slip-kmod.spec,v 1.25 2010/04/21 16:05:56 slords Exp $ |
2 |
|
|
3 |
# Define the kmod package name here. |
# Define the kmod package name here. |
4 |
%define kmod_name slip |
%define kmod_name slip |
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 |
85 |
|
|
86 |
# Strip the module(s). |
# Strip the module(s). |
87 |
find ${INSTALL_MOD_PATH} -type f -name \*.ko -exec strip --strip-debug \{\} \; |
find ${INSTALL_MOD_PATH} -type f -name \*.ko -exec strip --strip-debug \{\} \; |
88 |
# |
|
89 |
|
# Override where module comes from. |
90 |
|
mkdir -p ${INSTALL_MOD_PATH}/etc/depmod.d/ |
91 |
|
find ${INSTALL_MOD_PATH}/lib/modules/ -type f -name \*.ko -printf '%f\n' \ |
92 |
|
| sed 's,\.ko,,' | sort -u | xargs -ri echo "override {} * weak-updates/%{kmod_name}" \ |
93 |
|
>> ${INSTALL_MOD_PATH}/etc/depmod.d/%{kmod_name}.conf |
94 |
|
|
95 |
%clean |
%clean |
96 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
97 |
|
|
98 |
%changelog |
%changelog |
99 |
|
* Tue Jun 01 2010 Shad L. Lords <slords@mail.com> 1.0-7.sme |
100 |
|
- Make weak-updates default for pulling module [SME: 5982] |
101 |
|
- Fix previous script to not error on uninstall [SME: 5448] |
102 |
|
|
103 |
* 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 |
104 |
- Update scriptlets to not call rpm [SME: 5448] |
- Update scriptlets to not call rpm [SME: 5448] |
105 |
|
|