* New stuff in wireless-dev, wireless developers please pull...
@ 2006-11-03 4:30 John W. Linville
2006-11-03 6:42 ` Michael Wu
2006-11-03 9:07 ` Johannes Berg
0 siblings, 2 replies; 6+ messages in thread
From: John W. Linville @ 2006-11-03 4:30 UTC (permalink / raw)
To: netdev
I'm basically caught-up on merging for wireless-dev. Here is the URL,
just in case you forgot... :-)
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-dev.git
This includes a pull from Michael Buesch for bcm43xx stuff, a fresh
pull from Jiri for stack stuff, the addition of the p54 driver from
Michael Wu, Larry's wireless stats patches, and some misc patches
from (or through) David Kimdon and others. I apologize if I've left
anyone out. You'll still be in the changelogs... :-)
I've also added a 'pending' branch, with similar policies to the
'pending' branch in wireless-2.6 (i.e it means I've got the patch,
but I'm waiting on some feedback or changes, etc).
One big addition is the cfg80211/nl80211 stuff from Johannes. I'm not
quite confident that the Kconfig stuff is right, but the code is there.
This is our WE successor, so driver authors please take notice and
plan for your driver's migration to the new configuration regime.
Please pull the tree and check things out. If you sent a patch more
than a few days ago and it isn't in there, I've probably missed it
or discarded it for some reason. Please feel free to resubmit any
missing patches.
Thanks for your support, and for all the great patches! Keep 'em
coming! :-)
John
--
John W. Linville
linville@tuxdriver.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: New stuff in wireless-dev, wireless developers please pull...
2006-11-03 4:30 New stuff in wireless-dev, wireless developers please pull John W. Linville
@ 2006-11-03 6:42 ` Michael Wu
2006-11-03 8:44 ` Johannes Berg
2006-11-03 9:07 ` Johannes Berg
1 sibling, 1 reply; 6+ messages in thread
From: Michael Wu @ 2006-11-03 6:42 UTC (permalink / raw)
To: John W. Linville; +Cc: netdev, Johannes Berg
[-- Attachment #1: Type: text/plain, Size: 1290 bytes --]
On Thursday 02 November 2006 23:30, John W. Linville wrote:
> One big addition is the cfg80211/nl80211 stuff from Johannes. I'm not
> quite confident that the Kconfig stuff is right, but the code is there.
It doesn't seem to compile on my system:
net/built-in.o: In function `iw_send_thrspy_event':
wext-old.c:(.text+0x67672): undefined reference to `wireless_send_event'
net/built-in.o: In function `ioctl_standard_call':
wext-old.c:(.text+0x677bf): undefined reference to `standard_ioctl_num'
wext-old.c:(.text+0x677ea): undefined reference to `standard_ioctl'
wext-old.c:(.text+0x677f1): undefined reference to `standard_ioctl'
wext-old.c:(.text+0x679b9): undefined reference to `wireless_send_event'
wext-old.c:(.text+0x679f0): undefined reference to `wireless_send_event'
wext-old.c:(.text+0x67abf): undefined reference to `wireless_send_event'
net/built-in.o: In function `iw_handler_get_iwstats':
wext-old.c:(.text+0x67f67): undefined reference to `get_wireless_stats'
net/built-in.o: In function `net_dev_init':
dev.c:(.init.text+0x28e): undefined reference to `wireless_proc_init'
net/built-in.o:(__ksymtab+0x1248): undefined reference to
`wireless_send_event'
make: *** [.tmp_vmlinux1] Error 1
This is with cfg80211 turned off.
Thanks,
-Michael Wu
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: New stuff in wireless-dev, wireless developers please pull...
2006-11-03 6:42 ` Michael Wu
@ 2006-11-03 8:44 ` Johannes Berg
2006-11-03 9:06 ` Johannes Berg
0 siblings, 1 reply; 6+ messages in thread
From: Johannes Berg @ 2006-11-03 8:44 UTC (permalink / raw)
To: Michael Wu; +Cc: John W. Linville, netdev
On Fri, 2006-11-03 at 01:42 -0500, Michael Wu wrote:
> This is with cfg80211 turned off.
wext-old.c shouldn't be compiled then. Must be some Makefile bug, I'll
look into it.
johannes
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: New stuff in wireless-dev, wireless developers please pull...
2006-11-03 8:44 ` Johannes Berg
@ 2006-11-03 9:06 ` Johannes Berg
2006-11-03 11:16 ` Johannes Berg
0 siblings, 1 reply; 6+ messages in thread
From: Johannes Berg @ 2006-11-03 9:06 UTC (permalink / raw)
To: Michael Wu; +Cc: John W. Linville, netdev
> It doesn't seem to compile on my system:
>
> net/built-in.o: In function `iw_send_thrspy_event':
> wext-old.c:(.text+0x67672): undefined reference to `wireless_send_event'
Uh, common is missing. Adjust net/wireless/Makefile like this:
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
---
I'd be surprised if that patch applies. I generated it by hand :P
What would be cool if I could go to gitweb, edit the file and get a diff
out :) gitwiki.
--- a/net/wireless/Makefile
+++ b/net/wireless/Makefile
@@ -12,6 +12,6 @@
# this needs to be compiled in...
obj-$(CONFIG_CFG80211_WEXT_COMPAT) += wext-compat.o
-obj-$(CONFIG_CFG80211_WEXTNL_COMPAT)$(CONFIG_NET_WIRELESS_RTNETLINK) += wext-common.o
+obj-$(CONFIG_CFG80211_WEXTNL_COMPAT)$(CONFIG_NET_WIRELESS) += wext-common.o
obj-y += $(obj-yy) $(obj-yn) $(obj-ny)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: New stuff in wireless-dev, wireless developers please pull...
2006-11-03 4:30 New stuff in wireless-dev, wireless developers please pull John W. Linville
2006-11-03 6:42 ` Michael Wu
@ 2006-11-03 9:07 ` Johannes Berg
1 sibling, 0 replies; 6+ messages in thread
From: Johannes Berg @ 2006-11-03 9:07 UTC (permalink / raw)
To: John W. Linville; +Cc: netdev
On Thu, 2006-11-02 at 23:30 -0500, John W. Linville wrote:
> I've also added a 'pending' branch, with similar policies to the
> 'pending' branch in wireless-2.6 (i.e it means I've got the patch,
> but I'm waiting on some feedback or changes, etc).
Note that the d80211: change the cookie to be opaque as committed is
actually slightly buggy as I pointed out in a follow-up mail, the quilt
dir that's up on my homepage (which is now accessible too...) contains
the fixed version.
> One big addition is the cfg80211/nl80211 stuff from Johannes. I'm not
> quite confident that the Kconfig stuff is right, but the code is there.
Nice :)
johannes
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: New stuff in wireless-dev, wireless developers please pull...
2006-11-03 9:06 ` Johannes Berg
@ 2006-11-03 11:16 ` Johannes Berg
0 siblings, 0 replies; 6+ messages in thread
From: Johannes Berg @ 2006-11-03 11:16 UTC (permalink / raw)
To: Michael Wu; +Cc: John W. Linville, netdev
On Fri, 2006-11-03 at 10:06 +0100, Johannes Berg wrote:
> > It doesn't seem to compile on my system:
> >
> > net/built-in.o: In function `iw_send_thrspy_event':
> > wext-old.c:(.text+0x67672): undefined reference to `wireless_send_event'
>
> Uh, common is missing. Adjust net/wireless/Makefile like this:
Alright, I've uploaded a proper patch for this and fixed up all my other
patches to apply against the current wireless-dev.
johannes
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-11-03 11:15 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-03 4:30 New stuff in wireless-dev, wireless developers please pull John W. Linville
2006-11-03 6:42 ` Michael Wu
2006-11-03 8:44 ` Johannes Berg
2006-11-03 9:06 ` Johannes Berg
2006-11-03 11:16 ` Johannes Berg
2006-11-03 9:07 ` Johannes Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).