rpms/wl-kmod/F-11 broadcom-wl-5.10.91.9-linux-2.6.29.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 wl-kmod.spec, 1.36, 1.37 broadcom-wl-5.10.79.10-linux-2.6.29.patch, 1.3, NONE
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22310
Modified Files:
.cvsignore sources wl-kmod.spec
Added Files:
broadcom-wl-5.10.91.9-linux-2.6.29.patch
Removed Files:
broadcom-wl-5.10.79.10-linux-2.6.29.patch
Log Message:
* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
- update version to 5.10.91.9
broadcom-wl-5.10.91.9-linux-2.6.29.patch:
--- NEW FILE broadcom-wl-5.10.91.9-linux-2.6.29.patch ---
diff -Naur hybrid-portsrc-x86_32-v5_10_91_9.orig/src/wl/sys/wl_iw.c hybrid-portsrc-x86_32-v5_10_91_9/src/wl/sys/wl_iw.c
--- hybrid-portsrc-x86_32-v5_10_91_9.orig/src/wl/sys/wl_iw.c 2009-04-23 02:46:35.000000000 +0900
+++ hybrid-portsrc-x86_32-v5_10_91_9/src/wl/sys/wl_iw.c 2009-05-08 00:42:45.000000000 +0900
@@ -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;
@@ -1110,7 +1118,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));
@@ -1134,7 +1146,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));
@@ -1790,7 +1806,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));
@@ -1921,7 +1941,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 -Naur hybrid-portsrc-x86_32-v5_10_91_9.orig/src/wl/sys/wl_linux.c hybrid-portsrc-x86_32-v5_10_91_9/src/wl/sys/wl_linux.c
--- hybrid-portsrc-x86_32-v5_10_91_9.orig/src/wl/sys/wl_linux.c 2009-04-23 02:48:59.000000000 +0900
+++ hybrid-portsrc-x86_32-v5_10_91_9/src/wl/sys/wl_linux.c 2009-05-08 00:45:29.000000000 +0900
@@ -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
@@ -130,7 +133,11 @@
u8 rx_hdr[16], tx_hdr[16];
};
+#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))
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 20)
@@ -282,6 +289,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;
@@ -359,10 +369,20 @@
#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");
+ request_module("lib80211_crypt_tkip");
+ 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
@@ -666,7 +686,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;
}
@@ -833,7 +857,10 @@
strncpy(dev->name, name, IFNAMSIZ);
#else
- dev = alloc_netdev(0, name, ether_setup);
+ dev = alloc_netdev(sizeof(wl_if_t), 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",
@@ -847,7 +874,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);
diff -Naur hybrid-portsrc-x86_32-v5_10_91_9.orig/src/wl/sys/wl_linux.h hybrid-portsrc-x86_32-v5_10_91_9/src/wl/sys/wl_linux.h
--- hybrid-portsrc-x86_32-v5_10_91_9.orig/src/wl/sys/wl_linux.h 2009-04-23 02:49:04.000000000 +0900
+++ hybrid-portsrc-x86_32-v5_10_91_9/src/wl/sys/wl_linux.h 2009-05-08 00:42:45.000000000 +0900
@@ -85,10 +85,16 @@
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;
+ struct lib80211_tkip_data *tkip_ucast_data;
+ struct lib80211_tkip_data *tkip_bcast_data;
+#else
struct ieee80211_crypto_ops *tkipmodops;
struct ieee80211_tkip_data *tkip_ucast_data;
struct ieee80211_tkip_data *tkip_bcast_data;
#endif
+#endif
uint stats_id;
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-11/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 8 Mar 2009 21:06:13 -0000 1.6
+++ .cvsignore 13 Jun 2009 10:08:52 -0000 1.7
@@ -1,2 +1,2 @@
-hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
-hybrid-portsrc-x86_64-v5_10_79_10.tar.gz
+hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
+hybrid-portsrc-x86_64-v5_10_91_9.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-11/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 8 Mar 2009 21:06:13 -0000 1.6
+++ sources 13 Jun 2009 10:08:52 -0000 1.7
@@ -1,2 +1,2 @@
-7dd0b216ce8b9b4289425e6a71628232 hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
-72af629785af3777bc7398f742fb87af hybrid-portsrc-x86_64-v5_10_79_10.tar.gz
+8c538fedcc48df17668bd2b4ee424549 hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
+39ad099c6d2b1617bbad37f7f44e57bc hybrid-portsrc-x86_64-v5_10_91_9.tar.gz
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-11/wl-kmod.spec,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- wl-kmod.spec 28 May 2009 05:49:47 -0000 1.36
+++ wl-kmod.spec 13 Jun 2009 10:08:52 -0000 1.37
@@ -3,19 +3,19 @@
# "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 newest
+#define buildforkernels newest
Name: wl-kmod
-Version: 5.10.79.10
-Release: 2%{?dist}.8
+Version: 5.10.91.9
+Release: 1%{?dist}
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
URL: http://www.broadcom.com/support/802.11/linux_sta.php
-Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_79_10....
-Source1: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_64-v5_10_79_10....
+Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_91_9.t...
+Source1: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_91_9.t...
Source11: broadcom-wl-kmodtool-excludekernel-filterfile
-Patch0: broadcom-wl-5.10.79.10-linux-2.6.29.patch
+Patch0: broadcom-wl-5.10.91.9-linux-2.6.29.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -82,6 +82,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
+- update version to 5.10.91.9
+
* Thu May 28 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.79.10-2.8
- rebuild for new kernels
--- broadcom-wl-5.10.79.10-linux-2.6.29.patch DELETED ---
15 years, 5 months
rpms/broadcom-wl/F-9 .cvsignore, 1.6, 1.7 README.txt, 1.1, 1.2 broadcom-wl.spec, 1.6, 1.7 sources, 1.6, 1.7
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/broadcom-wl/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19492
Modified Files:
.cvsignore README.txt broadcom-wl.spec sources
Log Message:
* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
- update version to 5.10.91.9
- updated README.txt
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-9/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 8 Mar 2009 20:47:13 -0000 1.6
+++ .cvsignore 13 Jun 2009 09:31:19 -0000 1.7
@@ -1 +1 @@
-hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
+hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
Index: README.txt
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-9/README.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- README.txt 7 Nov 2008 21:38:56 -0000 1.1
+++ README.txt 13 Jun 2009 09:31:19 -0000 1.2
@@ -37,9 +37,21 @@
you will need to comment out the corresponding entry for that module. Note
that doing so may prevent this driver from functioning.
-By default the wireless card used by this driver will usually be identified as
-wlan0. If you wish to change the assigned device identifier then you should
-create a new file in /etc/modprobe.d/ and add an alias for the wl module. For
-example:
+----------------------------
+ISSUES FIXED IN THIS RELEASE
+----------------------------
+
+#72138 - SLED11 / Ubuntu 8.04: 43224 fails to associate after 6 hours
+
+----------------------------
+KNOWN ISSUES AND LIMITATIONS
+----------------------------
+
+#72238 - 20% lower throughput on channels 149, 153, 157, and 161
+#72324 - Ubuntu 8.04: cannot ping when Linux STA is IBSS creator with WEP
+enabled
+#72216 - Ubuntu 8.04: standby/resume with WPA2 and wpa_supplicant causes a
+continuous assoc/disassoc loop
+ (issue with wpa_supplicant, restarting wpa_supplicant fixes the
+issue)
-echo "alias eth0 wl" > /etc/modprobe.d/broadcom-wl-alias
Index: broadcom-wl.spec
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-9/broadcom-wl.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- broadcom-wl.spec 8 Mar 2009 20:47:13 -0000 1.6
+++ broadcom-wl.spec 13 Jun 2009 09:31:19 -0000 1.7
@@ -1,11 +1,11 @@
Name: broadcom-wl
-Version: 5.10.79.10
+Version: 5.10.91.9
Release: 1%{?dist}
Summary: Common files for Broadcom 802.11 STA driver
Group: System Environment/Kernel
License: Redistributable, no modification permitted
URL: http://www.broadcom.com/support/802.11/linux_sta.php
-Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_79_10....
+Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_91_9.t...
Source1: http://www.broadcom.com/docs/linux_sta/README.txt
Source2: broadcom-wl-blacklist
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -46,6 +46,10 @@
%config(noreplace) %{_sysconfdir}/modprobe.d/broadcom-wl-blacklist
%changelog
+* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
+- update version to 5.10.91.9
+- updated README.txt
+
* Sun Mar 08 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.79.10-1
- update version to 5.10.79.10
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-9/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 8 Mar 2009 20:47:13 -0000 1.6
+++ sources 13 Jun 2009 09:31:19 -0000 1.7
@@ -1 +1 @@
-7dd0b216ce8b9b4289425e6a71628232 hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
+8c538fedcc48df17668bd2b4ee424549 hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
15 years, 5 months
rpms/broadcom-wl/F-10 .cvsignore, 1.6, 1.7 README.txt, 1.1, 1.2 broadcom-wl.spec, 1.7, 1.8 sources, 1.6, 1.7
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/broadcom-wl/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19061
Modified Files:
.cvsignore README.txt broadcom-wl.spec sources
Log Message:
* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
- update version to 5.10.91.9
- updated README.txt
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-10/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 8 Mar 2009 20:44:36 -0000 1.6
+++ .cvsignore 13 Jun 2009 09:28:11 -0000 1.7
@@ -1 +1 @@
-hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
+hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
Index: README.txt
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-10/README.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- README.txt 7 Nov 2008 21:01:54 -0000 1.1
+++ README.txt 13 Jun 2009 09:28:11 -0000 1.2
@@ -37,9 +37,21 @@
you will need to comment out the corresponding entry for that module. Note
that doing so may prevent this driver from functioning.
-By default the wireless card used by this driver will usually be identified as
-wlan0. If you wish to change the assigned device identifier then you should
-create a new file in /etc/modprobe.d/ and add an alias for the wl module. For
-example:
+----------------------------
+ISSUES FIXED IN THIS RELEASE
+----------------------------
+
+#72138 - SLED11 / Ubuntu 8.04: 43224 fails to associate after 6 hours
+
+----------------------------
+KNOWN ISSUES AND LIMITATIONS
+----------------------------
+
+#72238 - 20% lower throughput on channels 149, 153, 157, and 161
+#72324 - Ubuntu 8.04: cannot ping when Linux STA is IBSS creator with WEP
+enabled
+#72216 - Ubuntu 8.04: standby/resume with WPA2 and wpa_supplicant causes a
+continuous assoc/disassoc loop
+ (issue with wpa_supplicant, restarting wpa_supplicant fixes the
+issue)
-echo "alias eth0 wl" > /etc/modprobe.d/broadcom-wl-alias
Index: broadcom-wl.spec
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-10/broadcom-wl.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- broadcom-wl.spec 8 Mar 2009 20:44:36 -0000 1.7
+++ broadcom-wl.spec 13 Jun 2009 09:28:11 -0000 1.8
@@ -1,11 +1,11 @@
Name: broadcom-wl
-Version: 5.10.79.10
+Version: 5.10.91.9
Release: 1%{?dist}
Summary: Common files for Broadcom 802.11 STA driver
Group: System Environment/Kernel
License: Redistributable, no modification permitted
URL: http://www.broadcom.com/support/802.11/linux_sta.php
-Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_79_10....
+Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_91_9.t...
Source1: http://www.broadcom.com/docs/linux_sta/README.txt
Source2: broadcom-wl-blacklist
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -46,6 +46,10 @@
%config(noreplace) %{_sysconfdir}/modprobe.d/broadcom-wl-blacklist
%changelog
+* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
+- update version to 5.10.91.9
+- updated README.txt
+
* Sun Mar 08 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.79.10-1
- update version to 5.10.79.10
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-10/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 8 Mar 2009 20:44:36 -0000 1.6
+++ sources 13 Jun 2009 09:28:11 -0000 1.7
@@ -1 +1 @@
-7dd0b216ce8b9b4289425e6a71628232 hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
+8c538fedcc48df17668bd2b4ee424549 hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
15 years, 5 months
rpms/broadcom-wl/F-11 broadcom-wl-blacklist.conf, NONE, 1.1 .cvsignore, 1.6, 1.7 README.txt, 1.1, 1.2 broadcom-wl.spec, 1.7, 1.8 sources, 1.6, 1.7 broadcom-wl-blacklist, 1.1, NONE
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/broadcom-wl/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18629
Modified Files:
.cvsignore README.txt broadcom-wl.spec sources
Added Files:
broadcom-wl-blacklist.conf
Removed Files:
broadcom-wl-blacklist
Log Message:
* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
- update version to 5.10.91.9
- renamed broadcom-wl-blacklist to broadcom-wl-blacklist.conf
- updated README.txt
--- NEW FILE broadcom-wl-blacklist.conf ---
# modules blacklisted for broadcom-wl
blacklist bcm43xx
blacklist ssb
blacklist b43
blacklist ndiswrapper
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-11/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 8 Mar 2009 20:40:25 -0000 1.6
+++ .cvsignore 13 Jun 2009 09:22:41 -0000 1.7
@@ -1 +1 @@
-hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
+hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
Index: README.txt
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-11/README.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- README.txt 7 Nov 2008 21:01:54 -0000 1.1
+++ README.txt 13 Jun 2009 09:22:41 -0000 1.2
@@ -25,8 +25,8 @@
driver and ndiswrapper Broadcom windows drivers.
To overcome these conflicts this package installs the file
-/etc/modprobe.d/broadcom-wl-blacklist which blacklists the following kernel
-modules to prevent them from loading:
+/etc/modprobe.d/broadcom-wl-blacklist.conf which blacklists the following
+kernel modules to prevent them from loading:
b43
bcm43xx
@@ -37,9 +37,21 @@
you will need to comment out the corresponding entry for that module. Note
that doing so may prevent this driver from functioning.
-By default the wireless card used by this driver will usually be identified as
-wlan0. If you wish to change the assigned device identifier then you should
-create a new file in /etc/modprobe.d/ and add an alias for the wl module. For
-example:
+----------------------------
+ISSUES FIXED IN THIS RELEASE
+----------------------------
+
+#72138 - SLED11 / Ubuntu 8.04: 43224 fails to associate after 6 hours
+
+----------------------------
+KNOWN ISSUES AND LIMITATIONS
+----------------------------
+
+#72238 - 20% lower throughput on channels 149, 153, 157, and 161
+#72324 - Ubuntu 8.04: cannot ping when Linux STA is IBSS creator with WEP
+enabled
+#72216 - Ubuntu 8.04: standby/resume with WPA2 and wpa_supplicant causes a
+continuous assoc/disassoc loop
+ (issue with wpa_supplicant, restarting wpa_supplicant fixes the
+issue)
-echo "alias eth0 wl" > /etc/modprobe.d/broadcom-wl-alias
Index: broadcom-wl.spec
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-11/broadcom-wl.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- broadcom-wl.spec 29 Mar 2009 14:46:27 -0000 1.7
+++ broadcom-wl.spec 13 Jun 2009 09:22:42 -0000 1.8
@@ -1,13 +1,13 @@
Name: broadcom-wl
-Version: 5.10.79.10
-Release: 2%{?dist}
+Version: 5.10.91.9
+Release: 1%{?dist}
Summary: Common files for Broadcom 802.11 STA driver
Group: System Environment/Kernel
License: Redistributable, no modification permitted
URL: http://www.broadcom.com/support/802.11/linux_sta.php
-Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_79_10....
+Source0: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5_10_91_9.t...
Source1: http://www.broadcom.com/docs/linux_sta/README.txt
-Source2: broadcom-wl-blacklist
+Source2: broadcom-wl-blacklist.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
@@ -43,9 +43,14 @@
%files
%defattr(-,root,root,-)
%doc lib/LICENSE.txt README.txt
-%config(noreplace) %{_sysconfdir}/modprobe.d/broadcom-wl-blacklist
+%config(noreplace) %{_sysconfdir}/modprobe.d/broadcom-wl-blacklist.conf
%changelog
+* Sat Jun 13 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.91.9-1
+- update version to 5.10.91.9
+- renamed broadcom-wl-blacklist to broadcom-wl-blacklist.conf
+- updated README.txt
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.79.10-2
- rebuild for new F11 features
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/broadcom-wl/F-11/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 8 Mar 2009 20:40:25 -0000 1.6
+++ sources 13 Jun 2009 09:22:42 -0000 1.7
@@ -1 +1 @@
-7dd0b216ce8b9b4289425e6a71628232 hybrid-portsrc-x86_32-v5_10_79_10.tar.gz
+8c538fedcc48df17668bd2b4ee424549 hybrid-portsrc-x86_32-v5_10_91_9.tar.gz
--- broadcom-wl-blacklist DELETED ---
15 years, 5 months
rpms/pdflib-lite/EL-5 pdflib-lite.spec,1.3,1.4 sources,1.4,1.5
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/pdflib-lite/EL-5
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16551
Modified Files:
pdflib-lite.spec sources
Log Message:
update to 7.0.4p4
Index: pdflib-lite.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/EL-5/pdflib-lite.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pdflib-lite.spec 11 Apr 2009 07:57:24 -0000 1.3
+++ pdflib-lite.spec 13 Jun 2009 08:43:54 -0000 1.4
@@ -4,13 +4,13 @@
Summary: Portable C library for dynamically generating PDF files
Name: pdflib-lite
# Remenber to check the URL after changing this...
-Version: 7.0.4p1
+Version: 7.0.4p4
Release: 1%{?dist}
License: Distributable
Group: System Environment/Libraries
URL: http://www.pdflib.com/
-Source: http://www.pdflib.com/binaries/PDFlib/704p1/PDFlib-Lite-%{version}.tar.gz
+Source: http://www.pdflib.com/binaries/PDFlib/704/PDFlib-Lite-%{version}.tar.gz
Patch0: pdflib-lite-7.0.4-gcc43.patch
@@ -185,6 +185,9 @@
%changelog
+* Sat Jun 13 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p4-1
+- update to 7.0.4p4
+
* Thu Mar 19 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p1-1
- update to 7.0.4p1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/EL-5/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Apr 2009 07:57:24 -0000 1.4
+++ sources 13 Jun 2009 08:43:54 -0000 1.5
@@ -1 +1 @@
-84da78b6be479b72deac64b4e9b5e9ab PDFlib-Lite-7.0.4p1.tar.gz
+1765de9c5f2b6c5769a2160eaa911e9a PDFlib-Lite-7.0.4p4.tar.gz
15 years, 5 months
rpms/pdflib-lite/F-9 pdflib-lite.spec,1.4,1.5 sources,1.4,1.5
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/pdflib-lite/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15637
Modified Files:
pdflib-lite.spec sources
Log Message:
update to 7.0.4p4
Index: pdflib-lite.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-9/pdflib-lite.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pdflib-lite.spec 11 Apr 2009 07:44:00 -0000 1.4
+++ pdflib-lite.spec 13 Jun 2009 08:29:44 -0000 1.5
@@ -4,13 +4,13 @@
Summary: Portable C library for dynamically generating PDF files
Name: pdflib-lite
# Remenber to check the URL after changing this...
-Version: 7.0.4p1
+Version: 7.0.4p4
Release: 1%{?dist}
License: Distributable
Group: System Environment/Libraries
URL: http://www.pdflib.com/
-Source: http://www.pdflib.com/binaries/PDFlib/704p1/PDFlib-Lite-%{version}.tar.gz
+Source: http://www.pdflib.com/binaries/PDFlib/704/PDFlib-Lite-%{version}.tar.gz
Patch0: pdflib-lite-7.0.4-gcc43.patch
@@ -185,6 +185,9 @@
%changelog
+* Sat Jun 13 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p4-1
+- update to 7.0.4p4
+
* Thu Mar 19 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p1-1
- update to 7.0.4p1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-9/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Apr 2009 07:44:00 -0000 1.4
+++ sources 13 Jun 2009 08:29:44 -0000 1.5
@@ -1 +1 @@
-84da78b6be479b72deac64b4e9b5e9ab PDFlib-Lite-7.0.4p1.tar.gz
+1765de9c5f2b6c5769a2160eaa911e9a PDFlib-Lite-7.0.4p4.tar.gz
15 years, 5 months
rpms/pdflib-lite/F-10 pdflib-lite.spec,1.4,1.5 sources,1.4,1.5
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/pdflib-lite/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14995
Modified Files:
pdflib-lite.spec sources
Log Message:
update to 7.0.4p4
Index: pdflib-lite.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-10/pdflib-lite.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pdflib-lite.spec 11 Apr 2009 07:14:53 -0000 1.4
+++ pdflib-lite.spec 13 Jun 2009 08:22:37 -0000 1.5
@@ -4,13 +4,13 @@
Summary: Portable C library for dynamically generating PDF files
Name: pdflib-lite
# Remenber to check the URL after changing this...
-Version: 7.0.4p1
+Version: 7.0.4p4
Release: 1%{?dist}
License: Distributable
Group: System Environment/Libraries
URL: http://www.pdflib.com/
-Source: http://www.pdflib.com/binaries/PDFlib/704p1/PDFlib-Lite-%{version}.tar.gz
+Source: http://www.pdflib.com/binaries/PDFlib/704/PDFlib-Lite-%{version}.tar.gz
Patch0: pdflib-lite-7.0.4-gcc43.patch
@@ -185,6 +185,9 @@
%changelog
+* Sat Jun 13 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p4-1
+- update to 7.0.4p4
+
* Thu Mar 19 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p1-1
- update to 7.0.4p1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-10/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Apr 2009 07:14:53 -0000 1.4
+++ sources 13 Jun 2009 08:22:37 -0000 1.5
@@ -1 +1 @@
-84da78b6be479b72deac64b4e9b5e9ab PDFlib-Lite-7.0.4p1.tar.gz
+1765de9c5f2b6c5769a2160eaa911e9a PDFlib-Lite-7.0.4p4.tar.gz
15 years, 5 months
rpms/pdflib-lite/F-11 pdflib-lite.spec,1.6,1.7 sources,1.4,1.5
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/pdflib-lite/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14092
Modified Files:
pdflib-lite.spec sources
Log Message:
update to 7.0.4p4
Index: pdflib-lite.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-11/pdflib-lite.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pdflib-lite.spec 11 Apr 2009 07:10:13 -0000 1.6
+++ pdflib-lite.spec 13 Jun 2009 08:06:01 -0000 1.7
@@ -4,13 +4,13 @@
Summary: Portable C library for dynamically generating PDF files
Name: pdflib-lite
# Remenber to check the URL after changing this...
-Version: 7.0.4p1
+Version: 7.0.4p4
Release: 1%{?dist}
License: Distributable
Group: System Environment/Libraries
URL: http://www.pdflib.com/
-Source: http://www.pdflib.com/binaries/PDFlib/704p1/PDFlib-Lite-%{version}.tar.gz
+Source: http://www.pdflib.com/binaries/PDFlib/704/PDFlib-Lite-%{version}.tar.gz
Patch0: pdflib-lite-7.0.4-gcc43.patch
@@ -185,6 +185,9 @@
%changelog
+* Sat Jun 13 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p4-1
+- update to 7.0.4p4
+
* Thu Mar 19 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p1-1
- update to 7.0.4p1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-11/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Apr 2009 07:10:13 -0000 1.4
+++ sources 13 Jun 2009 08:06:01 -0000 1.5
@@ -1 +1 @@
-84da78b6be479b72deac64b4e9b5e9ab PDFlib-Lite-7.0.4p1.tar.gz
+1765de9c5f2b6c5769a2160eaa911e9a PDFlib-Lite-7.0.4p4.tar.gz
15 years, 5 months
rpms/pdflib-lite/devel .cvsignore, 1.4, 1.5 pdflib-lite.spec, 1.6, 1.7 sources, 1.4, 1.5
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/pdflib-lite/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13032
Modified Files:
.cvsignore pdflib-lite.spec sources
Log Message:
update to 7.0.4p4
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 11 Apr 2009 07:10:13 -0000 1.4
+++ .cvsignore 13 Jun 2009 07:49:26 -0000 1.5
@@ -1 +1 @@
-PDFlib-Lite-7.0.4p1.tar.gz
+PDFlib-Lite-7.0.4p4.tar.gz
Index: pdflib-lite.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/devel/pdflib-lite.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pdflib-lite.spec 11 Apr 2009 07:10:13 -0000 1.6
+++ pdflib-lite.spec 13 Jun 2009 07:49:26 -0000 1.7
@@ -4,13 +4,13 @@
Summary: Portable C library for dynamically generating PDF files
Name: pdflib-lite
# Remenber to check the URL after changing this...
-Version: 7.0.4p1
+Version: 7.0.4p4
Release: 1%{?dist}
License: Distributable
Group: System Environment/Libraries
URL: http://www.pdflib.com/
-Source: http://www.pdflib.com/binaries/PDFlib/704p1/PDFlib-Lite-%{version}.tar.gz
+Source: http://www.pdflib.com/binaries/PDFlib/704/PDFlib-Lite-%{version}.tar.gz
Patch0: pdflib-lite-7.0.4-gcc43.patch
@@ -185,6 +185,9 @@
%changelog
+* Sat Jun 13 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p4-1
+- update to 7.0.4p4
+
* Thu Mar 19 2009 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.4p1-1
- update to 7.0.4p1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Apr 2009 07:10:13 -0000 1.4
+++ sources 13 Jun 2009 07:49:26 -0000 1.5
@@ -1 +1 @@
-84da78b6be479b72deac64b4e9b5e9ab PDFlib-Lite-7.0.4p1.tar.gz
+1765de9c5f2b6c5769a2160eaa911e9a PDFlib-Lite-7.0.4p4.tar.gz
15 years, 5 months
rpms/blcr-kmod/F-11 put_fs_struct.patch01, NONE, 1.1 blcr-kmod.spec, 1.14, 1.15
by Neal Becker
Author: nbecker
Update of /cvs/free/rpms/blcr-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16508
Modified Files:
blcr-kmod.spec
Added Files:
put_fs_struct.patch01
Log Message:
Fix patch
--- NEW FILE put_fs_struct.patch01 ---
This file is a patch against BLCR-0.8.1 to resolve the following error,
reported by Neal Becker, that is seen with the 2.6.29.x kernels used in fc11:
CC [M]
/builddir/build/BUILD/blcr-0.8.1/_kmod_build_2.6.29.3-140.fc11.i686.PAE/cr_module/kbuild/cr_dest_file.o
/builddir/build/BUILD/blcr-0.8.1/_kmod_build_2.6.29.3-140.fc11.i686.PAE/cr_module/kbuild/cr_dest_file.c:
In function 'cr_loc_free':
/builddir/build/BUILD/blcr-0.8.1/_kmod_build_2.6.29.3-140.fc11.i686.PAE/cr_module/kbuild/cr_dest_file.c:189:
error: implicit declaration of function 'put_fs_struct'
Note that this patch modifies configure and blcr_config.h.in directly. If patch should fail to cleanly
apply only those hunks, then running "autoreconf" should have the same effect.
It is my intention that if a 0.8.2 release of BLCR is made, this fix will
be included. However, it is possible that this may not appear in an
official BLCR release until 0.9.0 in the Fall.
- Paul H. Hargrove
Signed-off-by: Paul H. Hargrove <PHHargrove(a)lbl.gov>
diff -ur blcr-0.8.1.orig/acinclude.m4 blcr-0.8.1/acinclude.m4
--- blcr-0.8.1.orig/acinclude.m4 2009-02-13 17:48:55.000000000 -0800
+++ blcr-0.8.1/acinclude.m4 2009-06-08 11:41:24.000000000 -0700
@@ -1116,7 +1116,7 @@
# If not found, leave CR_K${TYPE}_${symbol} undefined
# If found to be exported, "#define CR_K${TYPE}_${symbol} 0"
# If found not to be exported, "#define CR_K${TYPE}_${symbol} 0x<value>"
-# On return, cr_addr is set (or undefined) the same way.
+# On return, cr_addr is set (or empty) the same way.
AC_DEFUN([CR_FIND_KSYM],[
AC_REQUIRE([CR_LINUX_SYMTAB])
AC_MSG_CHECKING([[kernel symbol table for $1]])
@@ -1135,6 +1135,7 @@
],[int x = sizeof(&$1);],[cr_cvname="Y$cr_cvname"],[cr_cvname="N$cr_cvname"])
fi
])
+ cr_addr=''
if test -z "$cr_cvname"; then
cr_result='not found'
else
diff -ur blcr-0.8.1.orig/configure.ac blcr-0.8.1/configure.ac
--- blcr-0.8.1.orig/configure.ac 2009-03-25 14:44:17.000000000 -0700
+++ blcr-0.8.1/configure.ac 2009-06-08 11:41:24.000000000 -0700
@@ -1472,9 +1472,17 @@
CR_FIND_KSYM([sys_prctl],[CODE],
[extern asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5);])
+CR_FIND_KSYM([copy_fs_struct],[CODE])
+CR_FIND_KSYM([put_fs_struct],[CODE])
+if test -z "$cr_addr"; then
+ CR_FIND_KSYM([free_fs_struct],[CODE])
+ if test -z "$cr_addr"; then
+ AC_MSG_ERROR([failed to find either symbol put_fs_struct or free_fs_struct])
+ fi
+fi
+
# For blcr
CR_FIND_KSYM([set_fs_pwd],[CODE])
-CR_FIND_KSYM([put_fs_struct],[CODE])
# For vmadump4
CR_FIND_KSYM([sys_mremap],[CODE],
[extern asmlinkage unsigned long sys_mremap(unsigned long addr, unsigned long old_len, unsigned long new_len, unsigned long flags, unsigned long new_addr);])
diff -ur blcr-0.8.1.orig/cr_module/cr_dest_file.c blcr-0.8.1/cr_module/cr_dest_file.c
--- blcr-0.8.1.orig/cr_module/cr_dest_file.c 2008-11-23 12:29:14.000000000 -0800
+++ blcr-0.8.1/cr_module/cr_dest_file.c 2009-06-08 11:41:24.000000000 -0700
@@ -186,7 +186,7 @@
// For directory:
if (loc->fs) {
- put_fs_struct(loc->fs);
+ cr_free_fs_struct(loc->fs);
}
}
diff -ur blcr-0.8.1.orig/cr_module/cr_kcompat.h blcr-0.8.1/cr_module/cr_kcompat.h
--- blcr-0.8.1.orig/cr_module/cr_kcompat.h 2009-02-06 16:15:57.000000000 -0800
+++ blcr-0.8.1/cr_module/cr_kcompat.h 2009-06-08 11:41:24.000000000 -0700
@@ -556,4 +556,15 @@
#define cr_task_cred(_t) (_t)
#endif
+#if defined(CR_KCODE_put_fs_struct)
+ static __inline__ void cr_free_fs_struct(struct fs_struct *fs) {
+ CRI_ASSERT(atomic_read(&fs->count) == 1);
+ put_fs_struct(fs);
+ }
+#elif defined(CR_KCODE_free_fs_struct)
+ #define cr_free_fs_struct free_fs_struct
+#else
+ #error "no cr_free_fs_struct() definition"
+#endif
+
#endif /* _CR_KCOMPAT_H */
diff -ur blcr-0.8.1.orig/configure blcr-0.8.1/configure
--- blcr-0.8.1.orig/configure 2009-03-25 21:23:59.000000000 -0700
+++ blcr-0.8.1/configure 2009-06-08 11:43:54.000000000 -0700
@@ -28435,6 +28435,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_timeval_to_jiffies"; then
cr_result='not found'
else
@@ -28548,6 +28549,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_jiffies_to_timeval"; then
cr_result='not found'
else
@@ -31168,6 +31170,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab___put_task_struct"; then
cr_result='not found'
else
@@ -31281,6 +31284,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab___put_task_struct_cb"; then
cr_result='not found'
else
@@ -32119,6 +32123,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab___kuser_helper_start"; then
cr_result='not found'
else
@@ -32233,6 +32238,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab___kuser_cmpxchg"; then
cr_result='not found'
else
@@ -32678,6 +32684,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_arch_setup_additional_pages"; then
cr_result='not found'
else
@@ -32906,6 +32913,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_map_vsyscall"; then
cr_result='not found'
else
@@ -33021,6 +33029,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_syscall32_setup_pages"; then
cr_result='not found'
else
@@ -33137,6 +33146,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_arch_pick_mmap_layout"; then
cr_result='not found'
else
@@ -33250,6 +33260,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_arch_get_unmaped_area"; then
cr_result='not found'
else
@@ -33363,6 +33374,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_arch_unmap_area"; then
cr_result='not found'
else
@@ -33787,6 +33799,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_hugetlbfs_file_operations"; then
cr_result='not found'
else
@@ -33901,6 +33914,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_is_file_shm_hugepages"; then
cr_result='not found'
else
@@ -34015,6 +34029,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_hugepage_vma"; then
cr_result='not found'
else
@@ -34129,6 +34144,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_pmd_huge"; then
cr_result='not found'
else
@@ -34243,6 +34259,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_follow_huge_pmd"; then
cr_result='not found'
else
@@ -34357,6 +34374,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_follow_huge_addr"; then
cr_result='not found'
else
@@ -34770,6 +34788,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_mem_map_zero"; then
cr_result='not found'
else
@@ -34886,6 +34905,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_empty_zero_page"; then
cr_result='not found'
else
@@ -35298,6 +35318,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_copy_siginfo_to_user"; then
cr_result='not found'
else
@@ -35412,6 +35433,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_group_send_sig_info"; then
cr_result='not found'
else
@@ -35528,6 +35550,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_do_sigaltstack"; then
cr_result='not found'
else
@@ -35855,6 +35878,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_cpu_gdt_descr"; then
cr_result='not found'
else
@@ -35969,6 +35993,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_cpu_gdt_table"; then
cr_result='not found'
else
@@ -36082,6 +36107,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_per_cpu__cpu_gdt_descr"; then
cr_result='not found'
else
@@ -37320,6 +37346,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_init_fpu"; then
cr_result='not found'
else
@@ -37434,6 +37461,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_xstate_size"; then
cr_result='not found'
else
@@ -38937,6 +38965,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_get_dumpable"; then
cr_result='not found'
else
@@ -39710,6 +39739,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_suid_dumpable"; then
cr_result='not found'
else
@@ -39933,6 +39963,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_set_dumpable"; then
cr_result='not found'
else
@@ -40047,6 +40078,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_groups_search"; then
cr_result='not found'
else
@@ -40161,6 +40193,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_supplemental_group_member"; then
cr_result='not found'
else
@@ -40554,6 +40587,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_detach_pid"; then
cr_result='not found'
else
@@ -40667,6 +40701,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_attach_pid"; then
cr_result='not found'
else
@@ -40780,6 +40815,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_change_pid"; then
cr_result='not found'
else
@@ -40893,6 +40929,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_find_pid"; then
cr_result='not found'
else
@@ -41006,6 +41043,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_link_pid"; then
cr_result='not found'
else
@@ -42494,6 +42532,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_free_pid"; then
cr_result='not found'
else
@@ -42607,6 +42646,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_pid_hash"; then
cr_result='not found'
else
@@ -42721,6 +42761,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_pidhash_shift"; then
cr_result='not found'
else
@@ -42941,6 +42982,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_pid_cachep"; then
cr_result='not found'
else
@@ -43133,6 +43175,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_init_pspace"; then
cr_result='not found'
else
@@ -43247,6 +43290,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_init_pid_ns"; then
cr_result='not found'
else
@@ -43969,6 +44013,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_pidmap_array"; then
cr_result='not found'
else
@@ -44092,6 +44137,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_pidmap_lock"; then
cr_result='not found'
else
@@ -44719,6 +44765,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_child_reaper"; then
cr_result='not found'
else
@@ -46099,6 +46146,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_anon_pipe_buf_ops"; then
cr_result='not found'
else
@@ -48380,6 +48428,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_ptrace_utrace_ops"; then
cr_result='not found'
else
@@ -48711,6 +48760,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_tasklist_lock"; then
cr_result='not found'
else
@@ -48824,6 +48874,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_shmem_file_operations"; then
cr_result='not found'
else
@@ -48938,6 +48989,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_ramfs_file_operations"; then
cr_result='not found'
else
@@ -49052,6 +49104,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_HPAGE_SHIFT"; then
cr_result='not found'
else
@@ -49166,6 +49219,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_phys_base"; then
cr_result='not found'
else
@@ -49282,6 +49336,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_do_pipe"; then
cr_result='not found'
else
@@ -49395,6 +49450,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_munmap"; then
cr_result='not found'
else
@@ -49509,6 +49565,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_dup2"; then
cr_result='not found'
else
@@ -49623,6 +49680,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_lseek"; then
cr_result='not found'
else
@@ -49737,6 +49795,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_ftruncate"; then
cr_result='not found'
else
@@ -49851,6 +49910,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_mprotect"; then
cr_result='not found'
else
@@ -49965,6 +50025,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_setitimer"; then
cr_result='not found'
else
@@ -50079,6 +50140,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_prctl"; then
cr_result='not found'
else
@@ -50106,21 +50168,20 @@
echo "${ECHO_T}$cr_result" >&6
-# For blcr
- echo "$as_me:$LINENO: checking kernel symbol table for set_fs_pwd" >&5
-echo $ECHO_N "checking kernel symbol table for set_fs_pwd... $ECHO_C" >&6
+ echo "$as_me:$LINENO: checking kernel symbol table for copy_fs_struct" >&5
+echo $ECHO_N "checking kernel symbol table for copy_fs_struct... $ECHO_C" >&6
# Our cacheval is encoded with 'Y' or 'N' as the first char to indicate
# if a declaration was found or not, and the address or 0 as the rest.
- if test "${cr_cv_ksymtab_set_fs_pwd+set}" = set; then
+ if test "${cr_cv_ksymtab_copy_fs_struct+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
- cr_cv_ksymtab_set_fs_pwd=`eval $LINUX_SYMTAB_CMD | sed -n -e "/${CR_KSYM_PATTERN_CODE}set_fs_pwd$/ {s/ .*//p;q;}"`
- if test -n "$cr_cv_ksymtab_set_fs_pwd"; then
- if eval $LINUX_SYMTAB_CMD | grep " __ksymtab_set_fs_pwd\$" >/dev/null ; then
- cr_cv_ksymtab_set_fs_pwd=0
+ cr_cv_ksymtab_copy_fs_struct=`eval $LINUX_SYMTAB_CMD | sed -n -e "/${CR_KSYM_PATTERN_CODE}copy_fs_struct$/ {s/ .*//p;q;}"`
+ if test -n "$cr_cv_ksymtab_copy_fs_struct"; then
+ if eval $LINUX_SYMTAB_CMD | grep " __ksymtab_copy_fs_struct\$" >/dev/null ; then
+ cr_cv_ksymtab_copy_fs_struct=0
fi
@@ -50149,7 +50210,7 @@
int
main ()
{
-int x = sizeof(&set_fs_pwd);
+int x = sizeof(©_fs_struct);
;
return 0;
}
@@ -50179,7 +50240,7 @@
CC=$SAVE_CC
CFLAGS=$SAVE_CFLAGS
CPPFLAGS=$SAVE_CPPFLAGS
- cr_cv_ksymtab_set_fs_pwd="Y$cr_cv_ksymtab_set_fs_pwd"
+ cr_cv_ksymtab_copy_fs_struct="Y$cr_cv_ksymtab_copy_fs_struct"
else
echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
@@ -50187,7 +50248,7 @@
CC=$SAVE_CC
CFLAGS=$SAVE_CFLAGS
CPPFLAGS=$SAVE_CPPFLAGS
- cr_cv_ksymtab_set_fs_pwd="N$cr_cv_ksymtab_set_fs_pwd"
+ cr_cv_ksymtab_copy_fs_struct="N$cr_cv_ksymtab_copy_fs_struct"
fi
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
@@ -50195,25 +50256,26 @@
fi
- if test -z "$cr_cv_ksymtab_set_fs_pwd"; then
+ cr_addr=''
+ if test -z "$cr_cv_ksymtab_copy_fs_struct"; then
cr_result='not found'
else
- if expr "$cr_cv_ksymtab_set_fs_pwd" : N >/dev/null; then
- { { echo "$as_me:$LINENO: error: Found symbol set_fs_pwd but no declaration -- please file a bug report." >&5
-echo "$as_me: error: Found symbol set_fs_pwd but no declaration -- please file a bug report." >&2;}
+ if expr "$cr_cv_ksymtab_copy_fs_struct" : N >/dev/null; then
+ { { echo "$as_me:$LINENO: error: Found symbol copy_fs_struct but no declaration -- please file a bug report." >&5
+echo "$as_me: error: Found symbol copy_fs_struct but no declaration -- please file a bug report." >&2;}
{ (exit 1); exit 1; }; }
fi
- cr_result=`echo $cr_cv_ksymtab_set_fs_pwd | tr -d 'YN'`
+ cr_result=`echo $cr_cv_ksymtab_copy_fs_struct | tr -d 'YN'`
if test $cr_result = 0; then
cr_result=exported
cr_addr=0
else
cr_addr="0x$cr_result"
- echo "_CR_IMPORT_KCODE(set_fs_pwd, $cr_addr)" >>$CR_KSYM_IMPORT_CALLS
+ echo "_CR_IMPORT_KCODE(copy_fs_struct, $cr_addr)" >>$CR_KSYM_IMPORT_CALLS
fi
cat >>confdefs.h <<_ACEOF
-#define CR_KCODE_set_fs_pwd $cr_addr
+#define CR_KCODE_copy_fs_struct $cr_addr
_ACEOF
fi
@@ -50308,6 +50370,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_put_fs_struct"; then
cr_result='not found'
else
@@ -50333,6 +50396,243 @@
echo "$as_me:$LINENO: result: $cr_result" >&5
echo "${ECHO_T}$cr_result" >&6
+if test -z "$cr_addr"; then
+
+
+ echo "$as_me:$LINENO: checking kernel symbol table for free_fs_struct" >&5
+echo $ECHO_N "checking kernel symbol table for free_fs_struct... $ECHO_C" >&6
+ # Our cacheval is encoded with 'Y' or 'N' as the first char to indicate
+ # if a declaration was found or not, and the address or 0 as the rest.
+ if test "${cr_cv_ksymtab_free_fs_struct+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+ cr_cv_ksymtab_free_fs_struct=`eval $LINUX_SYMTAB_CMD | sed -n -e "/${CR_KSYM_PATTERN_CODE}free_fs_struct$/ {s/ .*//p;q;}"`
+ if test -n "$cr_cv_ksymtab_free_fs_struct"; then
+ if eval $LINUX_SYMTAB_CMD | grep " __ksymtab_free_fs_struct\$" >/dev/null ; then
+ cr_cv_ksymtab_free_fs_struct=0
+ fi
+
+
+ SAVE_CC=$CC
+ SAVE_CFLAGS=$CFLAGS
+ SAVE_CPPFLAGS=$CPPFLAGS
+ CC=$KCC
+ CFLAGS=""
+ CPPFLAGS="$KCFLAGS"
+ cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h. */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h. */
+
+ #include <linux/kernel.h>
+ #ifndef FASTCALL
+ #define FASTCALL(_decl) _decl
+ #endif
+ #include <linux/types.h>
+
+ #define IN_CONFIGURE 1
+ #include "${TOP_SRCDIR}/include/blcr_imports.h.in"
+
+int
+main ()
+{
+int x = sizeof(&free_fs_struct);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>conftest.er1
+ ac_status=$?
+ grep -v '^ *+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -z "$ac_c_werror_flag"
+ || test ! -s conftest.err'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ CC=$SAVE_CC
+ CFLAGS=$SAVE_CFLAGS
+ CPPFLAGS=$SAVE_CPPFLAGS
+ cr_cv_ksymtab_free_fs_struct="Y$cr_cv_ksymtab_free_fs_struct"
+else
+ echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+CC=$SAVE_CC
+ CFLAGS=$SAVE_CFLAGS
+ CPPFLAGS=$SAVE_CPPFLAGS
+ cr_cv_ksymtab_free_fs_struct="N$cr_cv_ksymtab_free_fs_struct"
+fi
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+
+ fi
+
+fi
+
+ cr_addr=''
+ if test -z "$cr_cv_ksymtab_free_fs_struct"; then
+ cr_result='not found'
+ else
+ if expr "$cr_cv_ksymtab_free_fs_struct" : N >/dev/null; then
+ { { echo "$as_me:$LINENO: error: Found symbol free_fs_struct but no declaration -- please file a bug report." >&5
+echo "$as_me: error: Found symbol free_fs_struct but no declaration -- please file a bug report." >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+ cr_result=`echo $cr_cv_ksymtab_free_fs_struct | tr -d 'YN'`
+ if test $cr_result = 0; then
+ cr_result=exported
+ cr_addr=0
+ else
+ cr_addr="0x$cr_result"
+ echo "_CR_IMPORT_KCODE(free_fs_struct, $cr_addr)" >>$CR_KSYM_IMPORT_CALLS
+ fi
+
+cat >>confdefs.h <<_ACEOF
+#define CR_KCODE_free_fs_struct $cr_addr
+_ACEOF
+
+ fi
+ echo "$as_me:$LINENO: result: $cr_result" >&5
+echo "${ECHO_T}$cr_result" >&6
+
+ if test -z "$cr_addr"; then
+ { { echo "$as_me:$LINENO: error: failed to find either symbol put_fs_struct or free_fs_struct" >&5
+echo "$as_me: error: failed to find either symbol put_fs_struct or free_fs_struct" >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+fi
+
+# For blcr
+
+
+ echo "$as_me:$LINENO: checking kernel symbol table for set_fs_pwd" >&5
+echo $ECHO_N "checking kernel symbol table for set_fs_pwd... $ECHO_C" >&6
+ # Our cacheval is encoded with 'Y' or 'N' as the first char to indicate
+ # if a declaration was found or not, and the address or 0 as the rest.
+ if test "${cr_cv_ksymtab_set_fs_pwd+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+ cr_cv_ksymtab_set_fs_pwd=`eval $LINUX_SYMTAB_CMD | sed -n -e "/${CR_KSYM_PATTERN_CODE}set_fs_pwd$/ {s/ .*//p;q;}"`
+ if test -n "$cr_cv_ksymtab_set_fs_pwd"; then
+ if eval $LINUX_SYMTAB_CMD | grep " __ksymtab_set_fs_pwd\$" >/dev/null ; then
+ cr_cv_ksymtab_set_fs_pwd=0
+ fi
+
+
+ SAVE_CC=$CC
+ SAVE_CFLAGS=$CFLAGS
+ SAVE_CPPFLAGS=$CPPFLAGS
+ CC=$KCC
+ CFLAGS=""
+ CPPFLAGS="$KCFLAGS"
+ cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h. */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h. */
+
+ #include <linux/kernel.h>
+ #ifndef FASTCALL
+ #define FASTCALL(_decl) _decl
+ #endif
+ #include <linux/types.h>
+
+ #define IN_CONFIGURE 1
+ #include "${TOP_SRCDIR}/include/blcr_imports.h.in"
+
+int
+main ()
+{
+int x = sizeof(&set_fs_pwd);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>conftest.er1
+ ac_status=$?
+ grep -v '^ *+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -z "$ac_c_werror_flag"
+ || test ! -s conftest.err'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ CC=$SAVE_CC
+ CFLAGS=$SAVE_CFLAGS
+ CPPFLAGS=$SAVE_CPPFLAGS
+ cr_cv_ksymtab_set_fs_pwd="Y$cr_cv_ksymtab_set_fs_pwd"
+else
+ echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+CC=$SAVE_CC
+ CFLAGS=$SAVE_CFLAGS
+ CPPFLAGS=$SAVE_CPPFLAGS
+ cr_cv_ksymtab_set_fs_pwd="N$cr_cv_ksymtab_set_fs_pwd"
+fi
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+
+ fi
+
+fi
+
+ cr_addr=''
+ if test -z "$cr_cv_ksymtab_set_fs_pwd"; then
+ cr_result='not found'
+ else
+ if expr "$cr_cv_ksymtab_set_fs_pwd" : N >/dev/null; then
+ { { echo "$as_me:$LINENO: error: Found symbol set_fs_pwd but no declaration -- please file a bug report." >&5
+echo "$as_me: error: Found symbol set_fs_pwd but no declaration -- please file a bug report." >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+ cr_result=`echo $cr_cv_ksymtab_set_fs_pwd | tr -d 'YN'`
+ if test $cr_result = 0; then
+ cr_result=exported
+ cr_addr=0
+ else
+ cr_addr="0x$cr_result"
+ echo "_CR_IMPORT_KCODE(set_fs_pwd, $cr_addr)" >>$CR_KSYM_IMPORT_CALLS
+ fi
+
+cat >>confdefs.h <<_ACEOF
+#define CR_KCODE_set_fs_pwd $cr_addr
+_ACEOF
+
+ fi
+ echo "$as_me:$LINENO: result: $cr_result" >&5
+echo "${ECHO_T}$cr_result" >&6
+
# For vmadump4
@@ -50422,6 +50722,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_mremap"; then
cr_result='not found'
else
@@ -50536,6 +50837,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_do_sigaction"; then
cr_result='not found'
else
@@ -50650,6 +50952,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_load_gs_index"; then
cr_result='not found'
else
@@ -50765,6 +51068,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_setgroups"; then
cr_result='not found'
else
@@ -50879,6 +51183,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_setresuid"; then
cr_result='not found'
else
@@ -50993,6 +51298,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_setresgid"; then
cr_result='not found'
else
@@ -51108,6 +51414,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_expand_files"; then
cr_result='not found'
else
@@ -51222,6 +51529,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab___flush_icache_range"; then
cr_result='not found'
else
@@ -51335,6 +51643,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_sys_link"; then
cr_result='not found'
else
@@ -51449,6 +51758,7 @@
fi
+ cr_addr=''
if test -z "$cr_cv_ksymtab_lookup_create"; then
cr_result='not found'
else
diff -ur blcr-0.8.1.orig/blcr_config.h.in blcr-0.8.1/blcr_config.h.in
--- blcr-0.8.1.orig/blcr_config.h.in 2009-03-25 21:23:58.000000000 -0700
+++ blcr-0.8.1/blcr_config.h.in 2009-06-08 11:41:44.000000000 -0700
@@ -107,6 +107,10 @@
exported */
#undef CR_KCODE_change_pid
+/* Define to address of non-exported kernel symbol copy_fs_struct, or 0 if
+ exported */
+#undef CR_KCODE_copy_fs_struct
+
/* Define to address of non-exported kernel symbol copy_siginfo_to_user, or 0
if exported */
#undef CR_KCODE_copy_siginfo_to_user
@@ -143,6 +147,10 @@
exported */
#undef CR_KCODE_follow_huge_pmd
+/* Define to address of non-exported kernel symbol free_fs_struct, or 0 if
+ exported */
+#undef CR_KCODE_free_fs_struct
+
/* Define to address of non-exported kernel symbol free_pid, or 0 if exported
*/
#undef CR_KCODE_free_pid
Index: blcr-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/blcr-kmod/F-11/blcr-kmod.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- blcr-kmod.spec 28 May 2009 05:30:55 -0000 1.14
+++ blcr-kmod.spec 12 Jun 2009 23:23:02 -0000 1.15
@@ -7,7 +7,7 @@
Name: blcr-kmod
Version: 0.8.1
-Release: 1%{?dist}.7
+Release: 3%{?dist}.8
Summary: Kernel module (kmod) for Berkeley Lab Checkpoint/Restart for Linux
%define distname blcr-%{version}
@@ -16,10 +16,8 @@
License: GPLv2+
URL: http://www.blcr.org/
Source0: http://ftg.lbl.gov/CheckpointRestart/downloads/%{distname}.tar.gz
-# Patch0 is to remove -fno-stack-protector (provided by upstream)
-# Patch0 requires running autoreconf
-#Patch0: blcr-stackcheck.patch
-#Patch1: linux_2.6.29-rc3.patch00
+# Patch to build on 2.6.29.x
+Patch0: put_fs_struct.patch01
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#Generic i386 is NOT supported
@@ -48,11 +46,11 @@
%setup -q -c -T -a 0 -n %{distname}
# apply patches and do other stuff here
-#pushd %{distname}
-#%patch1 -p0
+pushd %{distname}
+%patch0 -p1
# patch changed configure.ac
#autoreconf --force --install
-#popd
+popd
for kernel_version in %{?kernel_versions} ; do
cp -a %{distname} _kmod_build_${kernel_version%%___*}
@@ -83,6 +81,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Jun 12 2009 Neal Becker <ndbecker2(a)gmail.com> - 0.8.1-3.8
+- Fix patch
+
* Thu May 28 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.1-1.7
- rebuild for new kernels
15 years, 5 months