rpms/wl-kmod/devel broadcom-wl-5.10.27.14-linux-2.6.29.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 wl-kmod.spec, 1.21, 1.22
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10511
Modified Files:
.cvsignore sources wl-kmod.spec
Added Files:
broadcom-wl-5.10.27.14-linux-2.6.29.patch
Log Message:
* Sun Feb 01 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.27.14-1
- update version to 5.10.27.14
- added patch to build against 2.6.29 kernel
broadcom-wl-5.10.27.14-linux-2.6.29.patch:
--- NEW FILE broadcom-wl-5.10.27.14-linux-2.6.29.patch ---
diff -u -r a/src/wl/sys/wl_iw.c b/src/wl/sys/wl_iw.c
--- a/src/wl/sys/wl_iw.c 2009-01-19 23:02:56.000000000 +0100
+++ b/src/wl/sys/wl_iw.c 2009-01-24 12:33:59.810703840 +0100
@@ -610,7 +610,11 @@
char *extra
)
{
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_iw_t *iw = netdev_priv(dev);
+#else
wl_iw_t *iw = dev->priv;
+#endif
struct sockaddr *addr = (struct sockaddr *) extra;
int i;
@@ -635,7 +639,11 @@
char *extra
)
{
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_iw_t *iw = netdev_priv(dev);
+#else
wl_iw_t *iw = dev->priv;
+#endif
struct sockaddr *addr = (struct sockaddr *) extra;
struct iw_quality *qual = (struct iw_quality *) &addr[iw->spy_num];
int i;
@@ -1111,7 +1119,11 @@
char *extra
)
{
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_iw_t *iw = netdev_priv(dev);
+#else
wl_iw_t *iw = dev->priv;
+#endif
WL_TRACE(("%s: SIOCSIWNICKN\n", dev->name));
@@ -1135,7 +1147,11 @@
char *extra
)
{
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_iw_t *iw = netdev_priv(dev);
+#else
wl_iw_t *iw = dev->priv;
+#endif
WL_TRACE(("%s: SIOCGIWNICKN\n", dev->name));
@@ -1795,7 +1811,11 @@
int paramid;
int paramval;
int val = 0;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_iw_t *iw = netdev_priv(dev);
+#else
wl_iw_t *iw = dev->priv;
+#endif
WL_TRACE(("%s: SIOCSIWAUTH\n", dev->name));
@@ -1926,7 +1946,11 @@
int paramid;
int paramval = 0;
int val;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_iw_t *iw = netdev_priv(dev);
+#else
wl_iw_t *iw = dev->priv;
+#endif
WL_TRACE(("%s: SIOCGIWAUTH\n", dev->name));
diff -u -r a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
--- a/src/wl/sys/wl_linux.c 2009-01-19 23:03:09.000000000 +0100
+++ b/src/wl/sys/wl_linux.c 2009-01-24 13:55:13.397012940 +0100
@@ -53,6 +53,9 @@
#include <linux/pci_ids.h>
#define WLC_MAXBSSCFG 1
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+#include <net/lib80211.h>
+#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 14)
#include <net/ieee80211.h>
#endif
@@ -149,7 +152,11 @@
bool resched;
uint32 pci_psstate[16];
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 14)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ struct lib80211_crypto_ops *tkipmodops;
+#else
struct ieee80211_crypto_ops *tkipmodops;
+#endif
struct ieee80211_tkip_data *tkip_ucast_data;
struct ieee80211_tkip_data *tkip_bcast_data;
#endif
@@ -190,7 +197,11 @@
static int wl_found = 0;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+#define WL_DEV_IF(dev) ((wl_if_t*)netdev_priv(dev))
+#else
#define WL_DEV_IF(dev) ((wl_if_t*)(dev)->priv)
+#endif
#define WL_INFO(dev) ((wl_info_t*)(WL_DEV_IF(dev)->wl))
#define WL_LOCK(wl) spin_lock_bh(&(wl)->lock)
@@ -350,6 +361,9 @@
dev = wlif->dev;
wl->dev = dev;
wl_if_setup(dev);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wlif = netdev_priv(dev);
+#endif
dev->base_addr = regs;
@@ -423,10 +437,19 @@
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 14)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl->tkipmodops = lib80211_get_crypto_ops("TKIP");
+#else
wl->tkipmodops = ieee80211_get_crypto_ops("TKIP");
+#endif
if (wl->tkipmodops == NULL) {
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ request_module("lib80211");
+ wl->tkipmodops = lib80211_get_crypto_ops("TKIP");
+#else
request_module("ieee80211_crypt_tkip");
wl->tkipmodops = ieee80211_get_crypto_ops("TKIP");
+#endif
}
#endif
#ifdef CONFIG_WIRELESS_EXT
@@ -725,7 +748,11 @@
}
if (wl->monitor) {
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wl_free_if(wl, (wl_if_t *)netdev_priv(wl->monitor));
+#else
wl_free_if(wl, (wl_if_t *)(wl->monitor->priv));
+#endif
wl->monitor = NULL;
}
@@ -895,6 +922,9 @@
#else
dev = alloc_netdev(0, name, ether_setup);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
+ wlif = netdev_priv(dev);
+#endif
if (!dev) {
MFREE(wl->osh, wlif, sizeof(wl_if_t));
WL_ERROR(("wl%d: wl_alloc_if: out of memory, alloc_netdev\n",
@@ -908,7 +938,9 @@
wlif->wl = wl;
wlif->wlcif = wlcif;
wlif->subunit = subunit;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 29)
dev->priv = wlif;
+#endif
if (iftype != WL_IFTYPE_MON && wl->dev && netif_queue_stopped(wl->dev))
netif_stop_queue(dev);
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 4 Jan 2009 15:13:10 -0000 1.4
+++ .cvsignore 1 Feb 2009 16:40:11 -0000 1.5
@@ -1,2 +1,2 @@
-hybrid-portsrc-x86-32_5_10_27_12.tar.gz
-hybrid-portsrc-x86-64_5_10_27_12.tar.gz
+hybrid-portsrc-x86_32-v5_10_27_14.tar.gz
+hybrid-portsrc-x86_64-v5_10_27_14.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 4 Jan 2009 15:13:10 -0000 1.4
+++ sources 1 Feb 2009 16:40:11 -0000 1.5
@@ -1,2 +1,2 @@
-c39f8583eb6af67d23093114f95ecf6b hybrid-portsrc-x86-32_5_10_27_12.tar.gz
-269268e8b88676cd3efe867ce5d97d98 hybrid-portsrc-x86-64_5_10_27_12.tar.gz
+4592a6da9a5c0a14f1be0210ebbb2faa hybrid-portsrc-x86_32-v5_10_27_14.tar.gz
+5a39e3f891cc08fda03278f36dc5293c hybrid-portsrc-x86_64-v5_10_27_14.tar.gz
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- wl-kmod.spec 1 Feb 2009 08:53:10 -0000 1.21
+++ wl-kmod.spec 1 Feb 2009 16:40:11 -0000 1.22
@@ -6,8 +6,8 @@
#%define buildforkernels newest
Name: wl-kmod
-Version: 5.10.27.12
-Release: 1%{?dist}.4
+Version: 5.10.27.14
+Release: 1%{?dist}
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -15,6 +15,7 @@
Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86-32_5_10_27_12.t...
Source1: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86-64_5_10_27_12.t...
Source11: broadcom-wl-kmodtool-excludekernel-filterfile
+Patch0: broadcom-wl-5.10.27.14-linux-2.6.29.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -51,6 +52,7 @@
%else
tar xzf %{SOURCE1}
%endif
+%patch0 -p1 -b .kernelfix
popd
for kernel_version in %{?kernel_versions} ; do
@@ -80,6 +82,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Feb 01 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.27.14-1
+- update version to 5.10.27.14
+- added patch to build against 2.6.29 kernel
+
* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.27.12-1.4
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/akmods/devel akmods, 1.3, 1.4 akmods.spec, 1.3, 1.4 akmodsposttrans, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/akmods/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv300
Modified Files:
akmods akmods.spec akmodsposttrans
Log Message:
* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3.6-1
- update to 0.3.6
-- better posttrans support
-- remove some leftovers from daemon stuff
-- fix a few minor bugs
-- use lockfile
Index: akmods
===================================================================
RCS file: /cvs/free/rpms/akmods/devel/akmods,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- akmods 29 Jan 2009 18:14:41 -0000 1.3
+++ akmods 1 Feb 2009 13:21:31 -0000 1.4
@@ -27,12 +27,12 @@
#
# ToDo:
# - use yum on install required kernel-devel pacakges?
-# - subprocess on dameon stop?
# - better way to detect if a earlier build failed or succeed
-# - manpage
-# - make use of the new posttrans hook in kenrel package?
-# - locking?
# - special kernel "all" (all that are installed with a matching -devel package; could be called from posttrans in akmods packages)
+# - manpage
+# - make it configurable if kmod building is done with nohup
+# - check on shutdown if akmods is still running and let it finish before continuing
+# - make it configurable if kmod from the repo replace local ones
# global vars
myprog="akmods"
@@ -54,7 +54,7 @@
shift
# output to console
- if [[ ! ${daemon} ]] && (( ${verboselevel} >= ${this_verbose} )) ; then
+ if (( ${verboselevel} >= ${this_verbose} )) ; then
if [[ "${1}" == "--success" ]] ; then
echo_success
continue_line=""
@@ -100,10 +100,10 @@
# remove tmpfiles
remove_tmpdir
- # remove pidfile
- [[ "${daemon}" ]] && rm -f /var/run/${myprog}.pid
+ # remove lockfile
+ rm -f /var/cache/akmods/.lockfile
- exit 128
+ exit ${1:-128}
}
trap "finally" ABRT EXIT HUP INT QUIT
@@ -152,7 +152,7 @@
kernels="$(uname -r)"
fi
- # we get the echo_{success,failure} stuff and the daemon method from there
+ # we get the echo_{success,failure} stuff from there
if [[ -r /etc/rc.d/init.d/functions ]]; then
source /etc/rc.d/init.d/functions
else
@@ -192,12 +192,15 @@
fi
# tools needed
- for tool in akmodsbuild chown sed rpmdev-vercmp; do
+ for tool in akmodsbuild chown lockfile sed rpmdev-vercmp; do
if ! which "${tool}" &> /dev/null ; then
echo -n "${tool} not found" >&2
echo_failure; echo; exit 1
fi
done
+
+ # create lockfile and wait till we get it
+ lockfile -s 2 -l 1800 "/var/cache/akmods/.lockfile"
}
buildinstall_kmod()
@@ -418,10 +421,10 @@
if [[ ! "${1}" ]] ; then
echo "ERROR: Please provide the kernel-version to build for together with --kernel" >&2
exit 1
- elif [[ ! -r /usr/src/kernels/"${1}"/Makefile ]] || [[ ! -r /lib/modules/${1}/build/Makefile ]]; then
+ elif [[ ! -r /usr/src/kernels/"${1}"/Makefile ]] && [[ ! -r /lib/modules/${1}/build/Makefile ]]; then
echo "Could not find files needed to compile modules for ${1}"
exit 1
- elif [[ -r /usr/src/kernels/"${1}"/Makefile ]] && [[ ! -r /boot/vmlinuz-"${1}" ]]; then
+ elif [[ -r /usr/src/kernels/"${1}"/Makefile ]] && [[ ! -r /boot/vmlinuz-"${1}" ]]; then
# this is a red hat / fedora kernel-devel package, but the kernel for it is not installed
# kmodtool would adds a dep on that kernel when building; thus when we'd try to install the
# rpms we'd run into a missing-dep problem. Thus we prevent that case
@@ -453,8 +456,13 @@
alwaystry=true
shift
;;
- --from-posttrans|--from-init|--from-akmod)
- # does nothing (yet!)
+ --from-init)
+ # just in case: remove stale lockfile is it exists:
+ rm -f /var/cache/akmods/.lockfile
+ shift
+ ;;
+ --from-posttrans|--from-kernel-posttrans|--from-akmod-posttrans)
+ # ignored
shift
;;
--verbose)
@@ -490,4 +498,4 @@
done
# finished :)
-finally
+finally 0
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/devel/akmods.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- akmods.spec 29 Jan 2009 18:14:41 -0000 1.3
+++ akmods.spec 1 Feb 2009 13:21:31 -0000 1.4
@@ -1,5 +1,5 @@
Name: akmods
-Version: 0.3.5
+Version: 0.3.6
Release: 1%{?dist}
Summary: Automatic kmods build and install tool
@@ -16,8 +16,10 @@
BuildArch: noarch
+# not picked up automatically
+Requires: %{_bindir}/nohup
+
# needed for actually building kmods:
-#Requires: %{_bindir}/inotifywait
Requires: %{_bindir}/rpmdev-vercmp
Requires: kmodtool >= 1-9
@@ -101,6 +103,13 @@
%{_mandir}/man1/*
%changelog
+* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3.6-1
+- update to 0.3.6
+-- better posttrans support
+-- remove some leftovers from daemon stuff
+-- fix a few minor bugs
+-- use lockfile
+
* Thu Jan 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3.5-1
- update to 0.3.5, fixes #340
Index: akmodsposttrans
===================================================================
RCS file: /cvs/free/rpms/akmods/devel/akmodsposttrans,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- akmodsposttrans 2 Oct 2008 17:28:11 -0000 1.1
+++ akmodsposttrans 1 Feb 2009 13:21:31 -0000 1.2
@@ -34,4 +34,4 @@
fi
# needs to run in background as rpmdb might be locked otherwise
-nohup /usr/sbin/akmods --from-posttrans --kernels ${1} &> /dev/null &
+nohup /usr/sbin/akmods --from-kernel-posttrans --kernels ${1} &> /dev/null &
15 years, 9 months
rpms/kmodtool/devel kmodtool-kmodtool, 1.3, 1.4 kmodtool.spec, 1.3, 1.4
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/kmodtool/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31306
Modified Files:
kmodtool-kmodtool kmodtool.spec
Log Message:
* Sun Feb 01 2009 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1-16
- add posttrans hooks to akmod packages, to make akmods build them
after install or update
Index: kmodtool-kmodtool
===================================================================
RCS file: /cvs/free/rpms/kmodtool/devel/kmodtool-kmodtool,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kmodtool-kmodtool 31 Jan 2009 18:17:20 -0000 1.3
+++ kmodtool-kmodtool 1 Feb 2009 12:59:44 -0000 1.4
@@ -80,6 +80,9 @@
%description -n akmod-${kmodname}
This package provides the akmod package for the ${kmodname} kernel modules.
+%posttrans -n akmod-${kmodname}
+nohup /usr/sbin/akmods --from-akmod-posttrans --akmod ${kmodname} &> /dev/null &
+
%files -n akmod-${kmodname}
%defattr(-,root,root,-)
%{_usrsrc}/akmods/*
Index: kmodtool.spec
===================================================================
RCS file: /cvs/free/rpms/kmodtool/devel/kmodtool.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kmodtool.spec 31 Jan 2009 18:17:20 -0000 1.3
+++ kmodtool.spec 1 Feb 2009 12:59:44 -0000 1.4
@@ -1,6 +1,6 @@
Name: kmodtool
Version: 1
-Release: 15%{?dist}
+Release: 16%{?dist}
Summary: Tool for building kmod packages
Group: Development/Tools
@@ -51,6 +51,10 @@
%{_datadir}/%{name}/
%changelog
+* Sun Feb 01 2009 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1-16
+- add posttrans hooks to akmod packages, to make akmods build them
+ after install or update
+
* Sat Jan 31 2009 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1-15
- require kmod-${kmodname}-${kernel_uname_r} with >= in meta package to
avoid problems if user has a newer akmods package that wants to install
15 years, 9 months
rpms/qc-usb-kmod/devel dead.package, NONE, 1.1 .cvsignore, 1.2, NONE qc-usb-0.6.6-2.6.24.patch, 1.1, NONE qc-usb-0.6.6-2.6.26.patch, 1.1, NONE qc-usb-0.6.6-2.6.27.patch, 1.1, NONE qc-usb-kmod.spec, 1.22, NONE sources, 1.2, NONE
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/qc-usb-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28593
Added Files:
dead.package
Removed Files:
.cvsignore qc-usb-0.6.6-2.6.24.patch qc-usb-0.6.6-2.6.26.patch
qc-usb-0.6.6-2.6.27.patch qc-usb-kmod.spec sources
Log Message:
obsolete
--- NEW FILE dead.package ---
use gspca_stv06xx instead, which Hans de Goede takes care of in Fedora's kernels until it's upstream
See also: https://bugzilla.rpmfusion.org/show_bug.cgi?id=259#c1
--- .cvsignore DELETED ---
--- qc-usb-0.6.6-2.6.24.patch DELETED ---
--- qc-usb-0.6.6-2.6.26.patch DELETED ---
--- qc-usb-0.6.6-2.6.27.patch DELETED ---
--- qc-usb-kmod.spec DELETED ---
--- sources DELETED ---
15 years, 9 months
rpms/wl-kmod/devel wl-kmod.spec,1.20,1.21
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18596
Modified Files:
wl-kmod.spec
Log Message:
* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.27.12-1.4
- rebuild for latest Fedora kernel;
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- wl-kmod.spec 25 Jan 2009 11:24:21 -0000 1.20
+++ wl-kmod.spec 1 Feb 2009 08:53:10 -0000 1.21
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.10.27.12
-Release: 1%{?dist}.3
+Release: 1%{?dist}.4
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -80,6 +80,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.27.12-1.4
+- rebuild for latest Fedora kernel;
+
* Sun Jan 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.27.12-1.3
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/slmodem-kmod/devel slmodem-kmod.spec,1.18,1.19
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/slmodem-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18473
Modified Files:
slmodem-kmod.spec
Log Message:
* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-26.18
- rebuild for latest Fedora kernel;
Index: slmodem-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/slmodem-kmod/devel/slmodem-kmod.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- slmodem-kmod.spec 25 Jan 2009 11:24:08 -0000 1.18
+++ slmodem-kmod.spec 1 Feb 2009 08:52:57 -0000 1.19
@@ -12,7 +12,7 @@
Name: slmodem-kmod
Version: 2.9.11
-Release: 26%{?dist}.17
+Release: 26%{?dist}.18
Summary: Proprietary SmartLink softmodem kernel drivers
Group: System Environment/Kernel
@@ -102,6 +102,9 @@
%changelog
+* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-26.18
+- rebuild for latest Fedora kernel;
+
* Sun Jan 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-26.17
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.28,1.29
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18352
Modified Files:
nvidia-kmod.spec
Log Message:
* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.27-1.1
- rebuild for latest Fedora kernel;
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- nvidia-kmod.spec 29 Jan 2009 14:14:02 -0000 1.28
+++ nvidia-kmod.spec 1 Feb 2009 08:52:42 -0000 1.29
@@ -3,12 +3,12 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%define buildforkernels akmod
+%define buildforkernels newest
Name: nvidia-kmod
Version: 180.27
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -94,6 +94,9 @@
%changelog
+* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.27-1.1
+- rebuild for latest Fedora kernel;
+
* Thu Jan 29 2009 kwizart < kwizart at gmail.com > - 180.27-1
- Update to 180.27 (beta)
15 years, 9 months
rpms/nvidia-beta-kmod/devel nvidia-beta-kmod.spec,1.16,1.17
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-beta-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18231
Modified Files:
nvidia-beta-kmod.spec
Log Message:
* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.11.02-1.7
- rebuild for latest Fedora kernel;
Index: nvidia-beta-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-beta-kmod/devel/nvidia-beta-kmod.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- nvidia-beta-kmod.spec 25 Jan 2009 11:23:38 -0000 1.16
+++ nvidia-beta-kmod.spec 1 Feb 2009 08:52:27 -0000 1.17
@@ -8,7 +8,7 @@
Name: nvidia-beta-kmod
Version: 180.11.02
# Taken over by kmodtool
-Release: 1%{?dist}.6
+Release: 1%{?dist}.7
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -91,6 +91,9 @@
%changelog
+* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.11.02-1.7
+- rebuild for latest Fedora kernel;
+
* Sun Jan 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.11.02-1.6
- rebuild for latest Fedora kernel;
15 years, 9 months