* unresolved symbols due to missing iwlcore.ko
@ 2010-12-14 10:13 Bringfried Stecklum
2010-12-14 19:01 ` Bringfried Stecklum
0 siblings, 1 reply; 4+ messages in thread
From: Bringfried Stecklum @ 2010-12-14 10:13 UTC (permalink / raw)
To: linux-wireless
I am having trouble installing iwlagn from the recent compat-wireless. My system
is Ubuntu 8.10 running kernel 2.6.36-1. The reason is that iwlcore.ko does not
get build and installed in the update modules folder which, of course, leads
unresolved symbols. Here is a short log
stecklum@extragalactix:~/System/src/compat-wireless-2010-12-12$
./scripts/driver-select iwlwifi
make
...
Building modules, stage 2.
MODPOST 7 modules
CC /home/stecklum/System/src/compat-wireless-2010-12-12/compat/compat.mod.o
LD [M] /home/stecklum/System/src/compat-wireless-2010-12-12/compat/compat.ko
CC
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atl1c/atl1c.mod.o
LD [M]
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atl1c/atl1c.ko
CC
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atl1e/atl1e.mod.o
LD [M]
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atl1e/atl1e.ko
CC
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atlx/atl1.mod.o
LD [M]
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atlx/atl1.ko
CC
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atlx/atl2.mod.o
LD [M]
/home/stecklum/System/src/compat-wireless-2010-12-12/drivers/net/atlx/atl2.ko
CC
/home/stecklum/System/src/compat-wireless-2010-12-12/net/mac80211/mac80211.mod.o
LD [M]
/home/stecklum/System/src/compat-wireless-2010-12-12/net/mac80211/mac80211.ko
CC
/home/stecklum/System/src/compat-wireless-2010-12-12/net/wireless/cfg80211.mod.o
LD [M]
/home/stecklum/System/src/compat-wireless-2010-12-12/net/wireless/cfg80211.ko
make[1]: Leaving directory `/usr/src/linux-headers-2.6.36-1-generic'
So no iwlcore.ko at this stage.
This is after make install
stecklum@extragalactix:~/System/src/compat-wireless-2010-12-12$ find . -name
iwlcore.ko -print
stecklum@extragalactix:~/System/src/compat-wireless-2010-12-12$
and consequently the module is not in the update module folder. Thus, upon
modprobe iwlagn the original kernel module will be loaded which, of course,
lacks the new symbols.
Regards, Bringfried
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: unresolved symbols due to missing iwlcore.ko
2010-12-14 10:13 unresolved symbols due to missing iwlcore.ko Bringfried Stecklum
@ 2010-12-14 19:01 ` Bringfried Stecklum
2010-12-15 22:20 ` Tomas Winkler
0 siblings, 1 reply; 4+ messages in thread
From: Bringfried Stecklum @ 2010-12-14 19:01 UTC (permalink / raw)
To: linux-wireless
Turns out that the error is due to a fault of the configuration script. If I
_don't_ select the iwlwifi driver via driver_select and build all drivers
instead, iwlcore.ko will be build as well and properly installed.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: unresolved symbols due to missing iwlcore.ko
2010-12-14 19:01 ` Bringfried Stecklum
@ 2010-12-15 22:20 ` Tomas Winkler
2010-12-15 22:31 ` Luis R. Rodriguez
0 siblings, 1 reply; 4+ messages in thread
From: Tomas Winkler @ 2010-12-15 22:20 UTC (permalink / raw)
To: Bringfried Stecklum; +Cc: linux-wireless
On Tue, Dec 14, 2010 at 9:01 PM, Bringfried Stecklum
<stecklum@tls-tautenburg.de> wrote:
> Turns out that the error is due to a fault of the configuration script. If I
> _don't_ select the iwlwifi driver via driver_select and build all drivers
> instead, iwlcore.ko will be build as well and properly installed.
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
It looks like there is a mismatch between usage CONFIG_IWLWIIFI and
CONFIG_COMPAT_IWLWIFI in select script and the Makefile. I'm not sure
what is the intention so of COMPAT so I cannot say were it should be
fixed.
Thanks
Tomas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: unresolved symbols due to missing iwlcore.ko
2010-12-15 22:20 ` Tomas Winkler
@ 2010-12-15 22:31 ` Luis R. Rodriguez
0 siblings, 0 replies; 4+ messages in thread
From: Luis R. Rodriguez @ 2010-12-15 22:31 UTC (permalink / raw)
To: Tomas Winkler; +Cc: Bringfried Stecklum, linux-wireless
On Wed, Dec 15, 2010 at 2:20 PM, Tomas Winkler <tomasw@gmail.com> wrote:
> On Tue, Dec 14, 2010 at 9:01 PM, Bringfried Stecklum
> <stecklum@tls-tautenburg.de> wrote:
>> Turns out that the error is due to a fault of the configuration script. If I
>> _don't_ select the iwlwifi driver via driver_select and build all drivers
>> instead, iwlcore.ko will be build as well and properly installed.
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
>
> It looks like there is a mismatch between usage CONFIG_IWLWIIFI and
> CONFIG_COMPAT_IWLWIFI in select script and the Makefile. I'm not sure
> what is the intention so of COMPAT so I cannot say were it should be
> fixed.
Likely the grep'ing out is dropping one config option out of the
Makefile, fix that and you can fix the problem.
Luis
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-15 22:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-14 10:13 unresolved symbols due to missing iwlcore.ko Bringfried Stecklum
2010-12-14 19:01 ` Bringfried Stecklum
2010-12-15 22:20 ` Tomas Winkler
2010-12-15 22:31 ` 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