rpms/wl-kmod/F-20 wl-kmod-006_kernel_3.16.patch, NONE, 1.1 wl-kmod-007_kernel_3.17.patch, NONE, 1.1 wl-kmod-005_kernel_3.16.patch, 1.1, NONE wl-kmod-006_kernel_3.17.patch, 1.1, NONE wl-kmod-007_kernel_3.18.patch, 1.1, NONE wl-kmod-008_kernel_3.18_null_pointer.patch, 1.1, NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv9793/F-20
Added Files:
wl-kmod-006_kernel_3.16.patch wl-kmod-007_kernel_3.17.patch
Removed Files:
wl-kmod-005_kernel_3.16.patch wl-kmod-006_kernel_3.17.patch
wl-kmod-007_kernel_3.18.patch
wl-kmod-008_kernel_3.18_null_pointer.patch
Log Message:
CVS update
wl-kmod-006_kernel_3.16.patch:
wl_cfg80211_hybrid.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
--- NEW FILE wl-kmod-006_kernel_3.16.patch ---
diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_cfg80211_hybrid.c hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_cfg80211_hybrid.c
--- hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_cfg80211_hybrid.c 2014-07-15 21:28:47.002546122 +0200
+++ hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_cfg80211_hybrid.c 2014-09-10 19:27:13.301316520 +0200
@@ -63,8 +63,13 @@
static s32 wl_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
struct cfg80211_ibss_params *params);
static s32 wl_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0)
+static s32 wl_cfg80211_get_station(struct wiphy *wiphy,
+ struct net_device *dev, const u8 *mac, struct station_info *sinfo);
+#else
static s32 wl_cfg80211_get_station(struct wiphy *wiphy,
struct net_device *dev, u8 *mac, struct station_info *sinfo);
+#endif
static s32 wl_cfg80211_set_power_mgmt(struct wiphy *wiphy,
struct net_device *dev, bool enabled, s32 timeout);
static int wl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
@@ -1387,7 +1392,11 @@
key_endian_to_host(&key);
params.key_len = (u8) min_t(u8, DOT11_MAX_KEY_SIZE, key.len);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0)
+ memcpy((void *)params.key, key.data, params.key_len);
+#else
memcpy(params.key, key.data, params.key_len);
+#endif
if ((err = wl_dev_ioctl(dev, WLC_GET_WSEC, &wsec, sizeof(wsec)))) {
return err;
@@ -1421,9 +1430,15 @@
return err;
}
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0)
+static s32
+wl_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
+ const u8 *mac, struct station_info *sinfo)
+#else
static s32
wl_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
u8 *mac, struct station_info *sinfo)
+#endif
{
struct wl_cfg80211_priv *wl = wiphy_to_wl(wiphy);
scb_val_t scb_val;
wl-kmod-007_kernel_3.17.patch:
wl_linux.c | 5 +++++
1 file changed, 5 insertions(+)
--- NEW FILE wl-kmod-007_kernel_3.17.patch ---
diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_linux.c hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_linux.c
--- hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_linux.c 2014-07-15 17:27:12.550312000 +0200
+++ hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_linux.c 2014-10-03 22:02:07.746840461 +0200
@@ -1313,7 +1313,12 @@
dev->priv = priv_link;
#else
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 17, 0)
dev = alloc_netdev(sizeof(priv_link_t), intf_name, ether_setup);
+#else
+ dev = alloc_netdev(sizeof(priv_link_t), intf_name, NET_NAME_UNKNOWN,
+ ether_setup);
+#endif
if (!dev) {
WL_ERROR(("wl%d: %s: alloc_netdev failed\n",
(wl->pub)?wl->pub->unit:wlif->subunit, __FUNCTION__));
--- wl-kmod-005_kernel_3.16.patch DELETED ---
--- wl-kmod-006_kernel_3.17.patch DELETED ---
--- wl-kmod-007_kernel_3.18.patch DELETED ---
--- wl-kmod-008_kernel_3.18_null_pointer.patch DELETED ---
9 years, 9 months
rpms/wl-kmod/F-20 wl-kmod-005_gcc_4.9.patch, NONE, 1.1 wl-kmod-008_kernel_3.18.patch, NONE, 1.1 wl-kmod-009_kernel_3.18_null_pointer.patch, NONE, 1.1 wl-kmod.spec, 1.143, 1.144
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv9296/F-20
Modified Files:
wl-kmod.spec
Added Files:
wl-kmod-005_gcc_4.9.patch wl-kmod-008_kernel_3.18.patch
wl-kmod-009_kernel_3.18_null_pointer.patch
Log Message:
Fix build for 3.18
wl-kmod-005_gcc_4.9.patch:
wl_linux.c | 5 +++++
1 file changed, 5 insertions(+)
--- NEW FILE wl-kmod-005_gcc_4.9.patch ---
diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_linux.c hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_linux.c
--- hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_linux.c 2014-07-15 16:34:34.359230000 +0200
+++ hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_linux.c 2014-07-15 17:27:12.550312091 +0200
@@ -2051,8 +2051,13 @@
void
wl_dump_ver(wl_info_t *wl, struct bcmstrbuf *b)
{
+#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 9)
bcm_bprintf(b, "wl%d: %s %s version %s\n", wl->pub->unit,
__DATE__, __TIME__, EPI_VERSION_STR);
+#else
+ bcm_bprintf(b, "wl%d: version %s\n", wl->pub->unit,
+ EPI_VERSION_STR);
+#endif
}
#if defined(BCMDBG)
wl-kmod-008_kernel_3.18.patch:
wl_cfg80211_hybrid.c | 8 ++++++++
1 file changed, 8 insertions(+)
--- NEW FILE wl-kmod-008_kernel_3.18.patch ---
diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_cfg80211_hybrid.c hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_cfg80211_hybrid.c
--- hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_cfg80211_hybrid.c 2014-09-10 19:27:13.301316000 +0200
+++ hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_cfg80211_hybrid.c 2014-10-27 11:21:58.213536239 +0100
@@ -2025,9 +2025,17 @@
notify_ie = (u8 *)bi + le16_to_cpu(bi->ie_offset);
notify_ielen = le32_to_cpu(bi->ie_length);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0)
+ cbss = cfg80211_inform_bss(wiphy, channel,
+ (mgmt_type == IEEE80211_STYPE_PROBE_RESP) ? CFG80211_BSS_FTYPE_PRESP : CFG80211_BSS_FTYPE_BEACON,
+ (const u8 *)(bi->BSSID.octet),
+ 0, beacon_proberesp->capab_info, beacon_proberesp->beacon_int,
+ (const u8 *)notify_ie, notify_ielen, signal, GFP_KERNEL);
+#else
cbss = cfg80211_inform_bss(wiphy, channel, (const u8 *)(bi->BSSID.octet),
0, beacon_proberesp->capab_info, beacon_proberesp->beacon_int,
(const u8 *)notify_ie, notify_ielen, signal, GFP_KERNEL);
+#endif
if (unlikely(!cbss))
return -ENOMEM;
wl-kmod-009_kernel_3.18_null_pointer.patch:
wl_linux.c | 5 +++++
1 file changed, 5 insertions(+)
--- NEW FILE wl-kmod-009_kernel_3.18_null_pointer.patch ---
diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_linux.c hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_linux.c
--- hybrid-v35_64-nodebug-pcoem-6_30_223_248.orig/src/wl/sys/wl_linux.c 2014-10-03 22:02:07.746840000 +0200
+++ hybrid-v35_64-nodebug-pcoem-6_30_223_248/src/wl/sys/wl_linux.c 2015-02-04 10:27:39.501789047 +0100
@@ -2173,8 +2173,13 @@
wlif = WL_DEV_IF(dev);
wl = WL_INFO(dev);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0)
+ skb->prev = NULL;
+#endif
if (WL_ALL_PASSIVE_ENAB(wl) || (WL_RTR() && WL_CONFIG_SMP())) {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 18, 0)
skb->prev = NULL;
+#endif
TXQ_LOCK(wl);
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-20/wl-kmod.spec,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- wl-kmod.spec 8 Feb 2015 11:04:04 -0000 1.143
+++ wl-kmod.spec 8 Feb 2015 12:10:29 -0000 1.144
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.248
-Release: 5%{?dist}.1
+Release: 6%{?dist}.1
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -19,10 +19,11 @@
Patch1: wl-kmod-002_wext_workaround.patch
Patch2: wl-kmod-003_kernel_3.8.patch
Patch3: wl-kmod-004_kernel_3.15.patch
-Patch4: wl-kmod-005_kernel_3.16.patch
-Patch5: wl-kmod-006_kernel_3.17.patch
-Patch6: wl-kmod-007_kernel_3.18.patch
-Patch7: wl-kmod-008_kernel_3.18_null_pointer.patch
+Patch4: wl-kmod-005_gcc_4.9.patch
+Patch5: wl-kmod-006_kernel_3.16.patch
+Patch6: wl-kmod-007_kernel_3.17.patch
+Patch7: wl-kmod-008_kernel_3.18.patch
+Patch8: wl-kmod-009_kernel_3.18_null_pointer.patch
BuildRequires: %{_bindir}/kmodtool
@@ -65,10 +66,11 @@
%patch1 -p1 -b .wext_workaround.patch
%patch2 -p1 -b .kernel-3.8
%patch3 -p1 -b .kernel-3.15
-%patch4 -p1 -b .kernel-3.16
-%patch5 -p1 -b .kernel-3.17
-%patch6 -p1 -b .kernel-3.18
-%patch7 -p1 -b .kernel-3.18_null_pointer
+%patch4 -p1 -b .gcc-4.9
+%patch5 -p1 -b .kernel-3.16
+%patch6 -p1 -b .kernel-3.17
+%patch7 -p1 -b .kernel-3.18
+%patch8 -p1 -b .kernel-3.18_null_pointer
popd
for kernel_version in %{?kernel_versions} ; do
@@ -98,197 +100,55 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.1
+* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-6.1
- Rebuilt for kernel
* Wed Feb 04 2015 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-6
- Added patch to fix rfbz#3533 for kernel >= 3.18
-- Added patch to build for kernel >= 3.18
-
-* Mon Feb 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.9
-- Rebuilt for kernel
-
-* Sat Jan 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.8
-- Rebuilt for kernel
-
-* Wed Dec 24 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.7
-- Rebuilt for kernel
-* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.6
+* Mon Feb 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.6
- Rebuilt for kernel
-* Sat Dec 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.5
+* Wed Jan 21 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.5
- Rebuilt for kernel
-* Sun Nov 23 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.4
+* Thu Jan 15 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.4
- Rebuilt for kernel
-* Sun Nov 16 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.3
+* Sat Jan 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.3
- Rebuilt for kernel
-* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.2
+* Fri Dec 19 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.2
- Rebuilt for kernel
-* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.1
+* Sun Dec 14 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.1
- Rebuilt for kernel
-* Wed Oct 29 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4
-- Rebuild for akmod
-
-* Tue Oct 28 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-3.4
-- Rebuilt for kernel
-
-* Thu Oct 16 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-3.3
-- Rebuilt for kernel
-
-* Fri Oct 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-3.2
-- Rebuilt for kernel
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5
+- Rebuilt for f21 final kernel
-* Tue Oct 07 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-3.1
-- Rebuilt for kernel
+* Mon Oct 27 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-4
+- Added patch to build for kernel >= 3.18
* Fri Oct 03 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-3
- Added patch to build for kernel >= 3.17
-* Fri Sep 19 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-2.2
-- Rebuilt for kernel
-
-* Thu Sep 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-2.1
-- Rebuilt for kernel
-
* Wed Sep 10 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-2
- Added patch to build for kernel >= 3.16
-* Tue Sep 09 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.9
-- Rebuilt for kernel
-
-* Sat Aug 30 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.8
-- Rebuilt for kernel
-
-* Wed Aug 20 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.7
-- Rebuilt for kernel
-
-* Wed Aug 20 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.6
-- Rebuilt for kernel
-
-* Fri Aug 15 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.5
-- Rebuilt for kernel
-
-* Wed Aug 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.4
-- Rebuilt for kernel
-
-* Sat Aug 02 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.3
-- Rebuilt for kernel
-
-* Fri Aug 01 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.2
-- Rebuilt for kernel
-
-* Fri Jul 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-1.1
-- Rebuilt for kernel
-
-* Thu Jul 17 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-1
+* Tue Jul 15 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-1
- Upstream update to 6.30.223.248
- Patches cleaned-up and removed
-* Thu Jul 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-6.2
-- Rebuilt for kernel
-
-* Fri Jul 11 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-6.1
-- Rebuild for akmod
-
-* Tue Jul 08 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-6
+* Tue Jul 08 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-8
- Added late patch for __devinit since kernel 3.8
- Modified patch to build for kernel >= 3.15
-* Tue Jul 08 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 6.30.223.141-6
-- Patch for 3.15 kernel
-
-* Tue Jul 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.29
-- Rebuilt for kernel
-
-* Tue Jul 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.28
-- Rebuilt for kernel
-
-* Tue Jul 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.27
-- Rebuilt for kernel
+* Thu May 08 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-7
+- Added patch to build with gcc >= 4.9 - fix error __TIME__ and __DATE__ macros
-* Tue Jun 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.26
-- Rebuilt for kernel
-
-* Fri Jun 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.25
-- Rebuilt for kernel
-
-* Sun Jun 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.24
-- Rebuilt for kernel
-
-* Tue Jun 03 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.23
-- Rebuilt for kernel
-
-* Thu May 15 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.22
-- Rebuilt for kernel
-
-* Thu May 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.21
-- Rebuilt for kernel
-
-* Wed Apr 30 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.20
-- Rebuilt for kernel
-
-* Sat Apr 26 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.19
-- Rebuilt for kernel
-
-* Wed Apr 16 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.18
-- Rebuilt for kernel
-
-* Fri Apr 04 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.17
-- Rebuilt for kernel
-
-* Wed Apr 02 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.16
-- Rebuilt for kernel
-
-* Tue Mar 25 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.15
-- Rebuilt for kernel
-
-* Sun Mar 09 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.14
-- Rebuilt for kernel
-
-* Tue Mar 04 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.13
-- Rebuilt for kernel
-
-* Tue Feb 25 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.12
-- Rebuilt for kernel
-
-* Mon Feb 24 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.11
-- Rebuilt for kernel
-
-* Mon Feb 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.10
-- Rebuilt for kernel
-
-* Sat Feb 15 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.9
-- Rebuilt for kernel
-
-* Wed Feb 12 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.8
-- Rebuilt for kernel
-
-* Fri Feb 07 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.7
-- Rebuilt for kernel
-
-* Thu Jan 30 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.6
-- Rebuilt for kernel
-
-* Tue Jan 28 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.5
-- Rebuilt for kernel
-
-* Fri Jan 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.4
-- Rebuilt for kernel
-
-* Sun Jan 12 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.3
-- Rebuilt for kernel
-
-* Wed Dec 25 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.2
-- Rebuilt for kernel
-
-* Fri Dec 20 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5.1
-- Rebuilt for kernel
+* Tue Apr 22 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-6
+- Added patch to build for kernel >= 3.15
* Tue Dec 10 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-5
- Rebuilt for f20 final kernel
9 years, 9 months
rpms/openafs/F-20 dead.package, NONE, 1.1 CellServDB, 1.3, NONE afs.conf, 1.4, NONE afs.conf.systemd, 1.2, NONE cacheinfo, 1.1, NONE openafs-1.6.0-fPIC.patch, 1.1, NONE openafs-1.6.6-systemd-env-vars.patch, 1.1, NONE openafs-1.6.6-systemd-execpoststart.patch, 1.2, NONE openafs-1.6.6-systemd-fhs.patch, 1.1, NONE openafs-1.6.6-systemd-kmod-name.patch, 1.1, NONE openafs-1.6.6-systemd-no-cellservdb.patch, 1.1, NONE openafs.init, 1.4, NONE openafs.spec, 1.48, NONE posthooks.sh, 1.2, NONE setcrypt.sh, 1.1, NONE s
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/openafs/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8585/F-20
Added Files:
dead.package
Removed Files:
CellServDB afs.conf afs.conf.systemd cacheinfo
openafs-1.6.0-fPIC.patch openafs-1.6.6-systemd-env-vars.patch
openafs-1.6.6-systemd-execpoststart.patch
openafs-1.6.6-systemd-fhs.patch
openafs-1.6.6-systemd-kmod-name.patch
openafs-1.6.6-systemd-no-cellservdb.patch openafs.init
openafs.spec posthooks.sh setcrypt.sh sources sysnames.sh
Log Message:
dead.package
--- NEW FILE dead.package ---
# packager stopped to maintain
--- CellServDB DELETED ---
--- afs.conf DELETED ---
--- afs.conf.systemd DELETED ---
--- cacheinfo DELETED ---
--- openafs-1.6.0-fPIC.patch DELETED ---
--- openafs-1.6.6-systemd-env-vars.patch DELETED ---
--- openafs-1.6.6-systemd-execpoststart.patch DELETED ---
--- openafs-1.6.6-systemd-fhs.patch DELETED ---
--- openafs-1.6.6-systemd-kmod-name.patch DELETED ---
--- openafs-1.6.6-systemd-no-cellservdb.patch DELETED ---
--- openafs.init DELETED ---
--- openafs.spec DELETED ---
--- posthooks.sh DELETED ---
--- setcrypt.sh DELETED ---
--- sources DELETED ---
--- sysnames.sh DELETED ---
9 years, 9 months
rpms/staging-kmod/F-20 staging-kmod.spec,1.90,1.91 sources,1.14,1.15
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7855
Modified Files:
staging-kmod.spec sources
Log Message:
Update to 3.18
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-20/staging-kmod.spec,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- staging-kmod.spec 8 Feb 2015 11:03:15 -0000 1.90
+++ staging-kmod.spec 8 Feb 2015 12:00:21 -0000 1.91
@@ -2,11 +2,8 @@
# which drivers to built
%global stgdrvs BCM_WIMAX FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
-
-
-
%ifnarch %{arm}
-%global stgdrvs %{stgdrvs} SLICOSS ET131X
+%global stgdrvs %{stgdrvs} SLICOSS
%endif
# fixme: DVB_AS102 DVB_CXD2099
@@ -15,20 +12,12 @@
# /usr/lib/rpm/debugedit: canonicalization unexpectedly shrank by one character
%define debug_package %{nil}
-# todo?
-# VIDEO_CX25821
-# VIDEO_TM6000
-# VIDEO_DT3155
-# CXT1E1
-# DVB_CXD2099
-# RAMSTER
-
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod
-Version: 3.17.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.9
+Version: 3.18.2
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.5
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -98,9 +87,6 @@
FT1000)
configops="${configops} CONFIG_FT1000_USB=m CONFIG_FT1000_PCMCIA=m"
;;
- RTL8192E)
- configops="${configops} CONFIG_RTLLIB=m CONFIG_RTLLIB_CRYPTO_CCMP=m CONFIG_RTLLIB_CRYPTO_TKIP=m CONFIG_RTLLIB_CRYPTO_WEP=m "
- ;;
R8188EU)
configops="${configops} CONFIG_88EU_AP_MODE=Y CONFIG_88EU_P2P=Y"
;;
@@ -143,32 +129,24 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.9
-- Rebuilt for kernel
-
-* Wed Feb 04 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.8
-- Rebuilt for kernel
-
-* Mon Feb 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.7
+* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.5
- Rebuilt for kernel
-* Sat Jan 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.6
+* Wed Feb 04 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.4
- Rebuilt for kernel
-* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.5
+* Mon Feb 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.3
- Rebuilt for kernel
-* Sat Dec 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.4
+* Wed Jan 21 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.2
- Rebuilt for kernel
-* Sun Nov 23 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.3
+* Thu Jan 15 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.1
- Rebuilt for kernel
-* Sun Nov 16 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.2
-- Rebuilt for kernel
-
-* Sun Nov 16 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.1
-- Rebuilt for kernel
+* Sun Jan 11 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-1
+- Update to 3.18.2
+- drop ET131X, dropped upstream
* Sat Nov 15 2014 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.17.2-1
- Update to 3.17.2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-20/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources 15 Nov 2014 20:09:08 -0000 1.14
+++ sources 8 Feb 2015 12:00:21 -0000 1.15
@@ -1 +1 @@
-26fc89595812f9767e7e8fe04b08c62a linux-staging-3.17.2.tar.xz
+5b811e302b1f317d711500721ab00387 linux-staging-3.18.2.tar.xz
9 years, 9 months
rpms/staging-kmod-addons/F-20 sources, 1.14, 1.15 staging-kmod-addons.spec, 1.17, 1.18
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod-addons/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7692
Modified Files:
sources staging-kmod-addons.spec
Log Message:
Update to 3.18
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-20/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources 15 Nov 2014 20:15:24 -0000 1.14
+++ sources 8 Feb 2015 11:59:43 -0000 1.15
@@ -1 +1 @@
-26fc89595812f9767e7e8fe04b08c62a linux-staging-3.17.2.tar.xz
+5b811e302b1f317d711500721ab00387 linux-staging-3.18.2.tar.xz
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-20/staging-kmod-addons.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- staging-kmod-addons.spec 15 Nov 2014 20:15:24 -0000 1.17
+++ staging-kmod-addons.spec 8 Feb 2015 11:59:43 -0000 1.18
@@ -1,12 +1,12 @@
# drivers that we ship; to be synced with staging-kmod.spec
-%global stgdrvs BCM_WIMAX FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
+%global stgdrvs BCM_WIMAX FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod-addons
-Version: 3.17.2
+Version: 3.18.2
Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
@@ -53,6 +53,9 @@
%changelog
+* Sun Jan 11 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-1
+- Update to 3.18.2
+
* Sat Nov 15 2014 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.17.2-1
- Update to 3.17.2
- sync driverlist with staging-kmod
9 years, 9 months
rpms/wl-kmod/F-20 wl-kmod.spec,1.142,1.143
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2440
Modified Files:
wl-kmod.spec
Log Message:
* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.1
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-20/wl-kmod.spec,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- wl-kmod.spec 4 Feb 2015 14:11:19 -0000 1.142
+++ wl-kmod.spec 8 Feb 2015 11:04:04 -0000 1.143
@@ -3,11 +3,11 @@
# "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
-%global buildforkernels current
+%global buildforkernels newest
Name: wl-kmod
Version: 6.30.223.248
-Release: 5%{?dist}
+Release: 5%{?dist}.1
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -98,6 +98,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5.1
+- Rebuilt for kernel
+
* Wed Feb 04 2015 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-6
- Added patch to fix rfbz#3533 for kernel >= 3.18
- Added patch to build for kernel >= 3.18
9 years, 9 months
rpms/nvidia-kmod/F-20 nvidia-kmod.spec,1.214,1.215
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2317
Modified Files:
nvidia-kmod.spec
Log Message:
* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:331.113-1.4
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-20/nvidia-kmod.spec,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- nvidia-kmod.spec 4 Feb 2015 17:47:02 -0000 1.214
+++ nvidia-kmod.spec 8 Feb 2015 11:03:56 -0000 1.215
@@ -9,7 +9,7 @@
Epoch: 1
Version: 331.113
# Taken over by kmodtool
-Release: 1%{?dist}.3
+Release: 1%{?dist}.4
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -99,6 +99,9 @@
%changelog
+* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:331.113-1.4
+- Rebuilt for kernel
+
* Wed Feb 04 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:331.113-1.3
- Rebuilt for kernel
9 years, 9 months
rpms/nvidia-340xx-kmod/F-20 nvidia-340xx-kmod.spec,1.9,1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-340xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2196
Modified Files:
nvidia-340xx-kmod.spec
Log Message:
* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-1.4
- Rebuilt for kernel
Index: nvidia-340xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-340xx-kmod/F-20/nvidia-340xx-kmod.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nvidia-340xx-kmod.spec 4 Feb 2015 17:46:52 -0000 1.9
+++ nvidia-340xx-kmod.spec 8 Feb 2015 11:03:49 -0000 1.10
@@ -9,7 +9,7 @@
Epoch: 1
Version: 340.76
# Taken over by kmodtool
-Release: 1%{?dist}.3
+Release: 1%{?dist}.4
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -91,6 +91,9 @@
%changelog
+* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-1.4
+- Rebuilt for kernel
+
* Wed Feb 04 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-1.3
- Rebuilt for kernel
9 years, 9 months
rpms/nvidia-304xx-kmod/F-20 nvidia-304xx-kmod.spec,1.68,1.69
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2070
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1.26
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20/nvidia-304xx-kmod.spec,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- nvidia-304xx-kmod.spec 4 Feb 2015 17:46:45 -0000 1.68
+++ nvidia-304xx-kmod.spec 8 Feb 2015 11:03:42 -0000 1.69
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.123
# Taken over by kmodtool
-Release: 1%{?dist}.25
+Release: 1%{?dist}.26
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -79,6 +79,9 @@
%changelog
+* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1.26
+- Rebuilt for kernel
+
* Wed Feb 04 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1.25
- Rebuilt for kernel
9 years, 9 months