linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* compat-wireless doesn't compile against 2.6.32 on Ubuntu beta
@ 2010-04-15 17:11 Andrey Semyonov
  2010-04-16 21:50 ` Pavel Roskin
  0 siblings, 1 reply; 3+ messages in thread
From: Andrey Semyonov @ 2010-04-15 17:11 UTC (permalink / raw)
  To: linux-wireless

I get this when trying to compile current drivers:


/usr/local/src/compat-wireless-2010-04-14# make
make -C /lib/modules/2.6.32-19-generic/build
M=/usr/local/src/compat-wireless-2010-04-14 modules
make[1]: Вход в каталог `/usr/src/linux-headers-2.6.32-19-generic'
 CC [M]  /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.o
/usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.c: In
function 'ieee80211_alloc_hw':
/usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.c:394:
error: implicit declaration of function '__hw_addr_init'
make[3]: *** [/usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.o]
Ошибка 1
make[2]: *** [/usr/local/src/compat-wireless-2010-04-14/net/mac80211] Ошибка 2
make[1]: *** [_module_/usr/local/src/compat-wireless-2010-04-14] Ошибка 2
make[1]: Выход из каталога `/usr/src/linux-headers-2.6.32-19-generic'
make: *** [modules] Ошибка 2

The driver selected is b43. System is Ubuntu 10.04 beta2 (currently
available for testing).

I apologize if this is a duplicate, yesterday's attempt to send this
report haven't cause any mailing list notification nor this report
appeared in ML archives.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: compat-wireless doesn't compile against 2.6.32 on Ubuntu beta
  2010-04-15 17:11 compat-wireless doesn't compile against 2.6.32 on Ubuntu beta Andrey Semyonov
@ 2010-04-16 21:50 ` Pavel Roskin
  2010-04-16 23:29   ` Luis R. Rodriguez
  0 siblings, 1 reply; 3+ messages in thread
From: Pavel Roskin @ 2010-04-16 21:50 UTC (permalink / raw)
  To: Andrey Semyonov; +Cc: linux-wireless

On Thu, 2010-04-15 at 21:11 +0400, Andrey Semyonov wrote:
> I get this when trying to compile current drivers:
> 
> 
> /usr/local/src/compat-wireless-2010-04-14# make
> make -C /lib/modules/2.6.32-19-generic/build
> M=/usr/local/src/compat-wireless-2010-04-14 modules
> make[1]: Вход в каталог `/usr/src/linux-headers-2.6.32-19-generic'
>  CC [M]  /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.o
> /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.c: In
> function 'ieee80211_alloc_hw':
> /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.c:394:
> error: implicit declaration of function '__hw_addr_init'

I confirm the problem.  Basically, the bleeding edge compat-wireless is
useless now.  Perhaps we need a check to to prevent broken tarballs from
being uploaded.  It's better than force users to search for the last
working tarball.

compat-wireless-2.6.34-rc4 should be OK for Linux 2.6.27 and newer,
although it lacks some fixes needed for older kernels.  It also lacks
the experimental wireless code that is not scheduled for Linux 2.6.34.

-- 
Regards,
Pavel Roskin

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: compat-wireless doesn't compile against 2.6.32 on Ubuntu beta
  2010-04-16 21:50 ` Pavel Roskin
@ 2010-04-16 23:29   ` Luis R. Rodriguez
  0 siblings, 0 replies; 3+ messages in thread
From: Luis R. Rodriguez @ 2010-04-16 23:29 UTC (permalink / raw)
  To: Pavel Roskin; +Cc: Andrey Semyonov, linux-wireless

On Fri, Apr 16, 2010 at 2:50 PM, Pavel Roskin <proski@gnu.org> wrote:
> On Thu, 2010-04-15 at 21:11 +0400, Andrey Semyonov wrote:
>> I get this when trying to compile current drivers:
>>
>>
>> /usr/local/src/compat-wireless-2010-04-14# make
>> make -C /lib/modules/2.6.32-19-generic/build
>> M=/usr/local/src/compat-wireless-2010-04-14 modules
>> make[1]: Вход в каталог `/usr/src/linux-headers-2.6.32-19-generic'
>>  CC [M]  /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.o
>> /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.c: In
>> function 'ieee80211_alloc_hw':
>> /usr/local/src/compat-wireless-2010-04-14/net/mac80211/main.c:394:
>> error: implicit declaration of function '__hw_addr_init'
>
> I confirm the problem.  Basically, the bleeding edge compat-wireless is
> useless now.

Right, I've noted in other threads what needs backport:

22bedad3ce112d5ca1eaf043d4990fa2ed698c87 net: convert multicast list
to list_head
2f787b0b76bf5de2eaa3ca3a29d89123ae03c856 mac80211: Ensure initializing
private mc_list in prepare_multicast().

These just need to be reverted through an ifdef, just havent' had time
to do it yet.

> Perhaps we need a check to to prevent broken tarballs from
> being uploaded.  It's better than force users to search for the last
> working tarball.

Indeed, I once suggested to do this on johill's box but he had little
space, I now moved the tarball building to orbit and we have plenty of
space there so we could do the automatic compile checks against all
stable kernels we support prior to uploading. Just need to get that
done.

  Luis

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-04-16 23:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-15 17:11 compat-wireless doesn't compile against 2.6.32 on Ubuntu beta Andrey Semyonov
2010-04-16 21:50 ` Pavel Roskin
2010-04-16 23:29   ` Luis R. Rodriguez

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).