All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] Build issue with recent compat-wireless
@ 2010-09-29  4:41 Dave Lentz
  2010-09-29  7:12 ` Nakagawa, Ryo
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Lentz @ 2010-09-29  4:41 UTC (permalink / raw)
  To: ath9k-devel

As of late, I have not been able to build compat-wireless. The last 
tarball that worked for me was from September 5. I use the driver-select 
script to choose ath9k_htc and make fails with error:

./scripts/gen-compat-autoconf.sh config.mk > include/linux/compat_autoconf.h
make -C /lib/modules/2.6.35-6.slh.1-aptosid-amd64/build 
M=/opt/compat-wireless-2010-09-28 modules
make[1]: Entering directory 
`/usr/src/linux-headers-2.6.35-6.slh.1-aptosid-amd64'
   LD      /opt/compat-wireless-2010-09-28/compat/built-in.o
   CC [M]  /opt/compat-wireless-2010-09-28/compat/main.o
   CC [M]  /opt/compat-wireless-2010-09-28/compat/compat-2.6.36.o
   CC [M]  /opt/compat-wireless-2010-09-28/compat/compat-2.6.37.o
   LD [M]  /opt/compat-wireless-2010-09-28/compat/compat.o
   LD      /opt/compat-wireless-2010-09-28/drivers/net/wireless/built-in.o
   LD      
/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/built-in.o
   CC [M]  /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/main.o
   CC [M]  /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/regd.o
   CC [M]  /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/hw.o
make[4]: *** No rule to make target 
`/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath-', needed 
by `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath.o'.  Stop.
make[3]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath] 
Error 2
make[2]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless] Error 2
make[1]: *** [_module_/opt/compat-wireless-2010-09-28] Error 2

I compared makefiles in the ath directory between working and 
non-working tarballs, but they are the same, so I'm not sure what's 
causing this. I am using Debian (apto)sid in the example above, but I 
also experience the same thing with Ubuntu Maverick/10.10.

Thanks.

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

* [ath9k-devel] Build issue with recent compat-wireless
  2010-09-29  4:41 [ath9k-devel] Build issue with recent compat-wireless Dave Lentz
@ 2010-09-29  7:12 ` Nakagawa, Ryo
  2010-09-29  9:01   ` Rajkumar Manoharan
  0 siblings, 1 reply; 4+ messages in thread
From: Nakagawa, Ryo @ 2010-09-29  7:12 UTC (permalink / raw)
  To: ath9k-devel

HI,
I found strange charactor in drivers/net/wireless/ath/Makefile Line #5

obj-$(CONFIG_ATH9K_HW)          += ath9k/
obj-$(CONFIG_ATH_COMMON)        += ath.o
ath-objs :=     main.o \
                regd.o \
                hw.o \  <-----
ath-$(CONFIG_ATH_DEBUG) += debug.o

Is the following correct?

obj-$(CONFIG_ATH9K_HW)          += ath9k/
obj-$(CONFIG_ATH_COMMON)        += ath.o
ath-objs :=     main.o \
                regd.o \
                hw.o
ath-$(CONFIG_ATH_DEBUG) += debug.o

regards

2010/9/29 Dave Lentz <dtl131@gmail.com>:
> As of late, I have not been able to build compat-wireless. The last
> tarball that worked for me was from September 5. I use the driver-select
> script to choose ath9k_htc and make fails with error:
>
> ./scripts/gen-compat-autoconf.sh config.mk > include/linux/compat_autoconf.h
> make -C /lib/modules/2.6.35-6.slh.1-aptosid-amd64/build
> M=/opt/compat-wireless-2010-09-28 modules
> make[1]: Entering directory
> `/usr/src/linux-headers-2.6.35-6.slh.1-aptosid-amd64'
> ? LD ? ? ?/opt/compat-wireless-2010-09-28/compat/built-in.o
> ? CC [M] ?/opt/compat-wireless-2010-09-28/compat/main.o
> ? CC [M] ?/opt/compat-wireless-2010-09-28/compat/compat-2.6.36.o
> ? CC [M] ?/opt/compat-wireless-2010-09-28/compat/compat-2.6.37.o
> ? LD [M] ?/opt/compat-wireless-2010-09-28/compat/compat.o
> ? LD ? ? ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/built-in.o
> ? LD
> /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/built-in.o
> ? CC [M] ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/main.o
> ? CC [M] ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/regd.o
> ? CC [M] ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/hw.o
> make[4]: *** No rule to make target
> `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath-', needed
> by `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath.o'. ?Stop.
> make[3]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath]
> Error 2
> make[2]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless] Error 2
> make[1]: *** [_module_/opt/compat-wireless-2010-09-28] Error 2
>
> I compared makefiles in the ath directory between working and
> non-working tarballs, but they are the same, so I'm not sure what's
> causing this. I am using Debian (apto)sid in the example above, but I
> also experience the same thing with Ubuntu Maverick/10.10.
>
> Thanks.
>
> _______________________________________________
> ath9k-devel mailing list
> ath9k-devel at lists.ath9k.org
> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>

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

* [ath9k-devel] Build issue with recent compat-wireless
  2010-09-29  7:12 ` Nakagawa, Ryo
@ 2010-09-29  9:01   ` Rajkumar Manoharan
  2010-10-01 17:45     ` Luis R. Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Rajkumar Manoharan @ 2010-09-29  9:01 UTC (permalink / raw)
  To: ath9k-devel


----------------------------------------
> Date: Wed, 29 Sep 2010 16:12:15 +0900
> From: ryo.nakagawa.s50 at gmail.com
> To: ath9k-devel at lists.ath9k.org
> Subject: Re: [ath9k-devel] Build issue with recent compat-wireless
>
> HI,
> I found strange charactor in drivers/net/wireless/ath/Makefile Line #5
>
> obj-$(CONFIG_ATH9K_HW) += ath9k/
> obj-$(CONFIG_ATH_COMMON) += ath.o
> ath-objs := main.o \
> regd.o \
> hw.o \ <-----
> ath-$(CONFIG_ATH_DEBUG) += debug.o
>
> Is the following correct?
>
> obj-$(CONFIG_ATH9K_HW) += ath9k/
> obj-$(CONFIG_ATH_COMMON) += ath.o
> ath-objs := main.o \
> regd.o \
> hw.o
> ath-$(CONFIG_ATH_DEBUG) += debug.o
>
> regards
>
> 2010/9/29 Dave Lentz :
>> As of late, I have not been able to build compat-wireless. The last
>> tarball that worked for me was from September 5. I use the driver-select
>> script to choose ath9k_htc and make fails with error:
>>
>> ./scripts/gen-compat-autoconf.sh config.mk> include/linux/compat_autoconf.h
>> make -C /lib/modules/2.6.35-6.slh.1-aptosid-amd64/build
>> M=/opt/compat-wireless-2010-09-28 modules
>> make[1]: Entering directory
>> `/usr/src/linux-headers-2.6.35-6.slh.1-aptosid-amd64'
>>   LD      /opt/compat-wireless-2010-09-28/compat/built-in.o
>>   CC [M]  /opt/compat-wireless-2010-09-28/compat/main.o
>>   CC [M]  /opt/compat-wireless-2010-09-28/compat/compat-2.6.36.o
>>   CC [M]  /opt/compat-wireless-2010-09-28/compat/compat-2.6.37.o
>>   LD [M]  /opt/compat-wireless-2010-09-28/compat/compat.o
>>   LD      /opt/compat-wireless-2010-09-28/drivers/net/wireless/built-in.o
>>   LD
>> /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/built-in.o
>>   CC [M]  /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/main.o
>>   CC [M]  /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/regd.o
>>   CC [M]  /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/hw.o
>> make[4]: *** No rule to make target
>> `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath-', needed
>> by `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath.o'.  Stop.
>> make[3]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath]
>> Error 2
>> make[2]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless] Error 2
>> make[1]: *** [_module_/opt/compat-wireless-2010-09-28] Error 2
>>
>> I compared makefiles in the ath directory between working and
>> non-working tarballs, but they are the same, so I'm not sure what's
>> causing this. I am using Debian (apto)sid in the example above, but I
>> also experience the same thing with Ubuntu Maverick/10.10.
>>
>> Thanks.
>>
>> _______________________________________________
>> ath9k-devel mailing list
>> ath9k-devel at lists.ath9k.org
>> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>>
> _______________________________________________
> ath9k-devel mailing list
> ath9k-devel at lists.ath9k.org
> https://lists.ath9k.org/mailman/listinfo/ath9k-devel

Nop.? It skip to include key.o. The problem is with driver-select script.
apply the change in function select_ath_driver

<?????? perl -i -ne 'print if /'$1'/ || /CONFIG_ATH_/ || /ath-objs/ || /regd.o/ || /hw.o/ || key.o' $ATH_MAKEFILE
---
>?????? perl -i -ne 'print if /'$1'/ || /CONFIG_ATH_/ || /ath-objs/ || /regd.o/ || /hw.o/ ' $ATH_MAKEFILE

- Rajkumar
 		 	   		  

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

* [ath9k-devel] Build issue with recent compat-wireless
  2010-09-29  9:01   ` Rajkumar Manoharan
@ 2010-10-01 17:45     ` Luis R. Rodriguez
  0 siblings, 0 replies; 4+ messages in thread
From: Luis R. Rodriguez @ 2010-10-01 17:45 UTC (permalink / raw)
  To: ath9k-devel

On Wed, Sep 29, 2010 at 2:01 AM, Rajkumar Manoharan <rajkumarvm@live.com> wrote:
>
> ----------------------------------------
>> Date: Wed, 29 Sep 2010 16:12:15 +0900
>> From: ryo.nakagawa.s50 at gmail.com
>> To: ath9k-devel at lists.ath9k.org
>> Subject: Re: [ath9k-devel] Build issue with recent compat-wireless
>>
>> HI,
>> I found strange charactor in drivers/net/wireless/ath/Makefile Line #5
>>
>> obj-$(CONFIG_ATH9K_HW) += ath9k/
>> obj-$(CONFIG_ATH_COMMON) += ath.o
>> ath-objs := main.o \
>> regd.o \
>> hw.o \ <-----
>> ath-$(CONFIG_ATH_DEBUG) += debug.o
>>
>> Is the following correct?
>>
>> obj-$(CONFIG_ATH9K_HW) += ath9k/
>> obj-$(CONFIG_ATH_COMMON) += ath.o
>> ath-objs := main.o \
>> regd.o \
>> hw.o
>> ath-$(CONFIG_ATH_DEBUG) += debug.o
>>
>> regards
>>
>> 2010/9/29 Dave Lentz :
>>> As of late, I have not been able to build compat-wireless. The last
>>> tarball that worked for me was from September 5. I use the driver-select
>>> script to choose ath9k_htc and make fails with error:
>>>
>>> ./scripts/gen-compat-autoconf.sh config.mk> include/linux/compat_autoconf.h
>>> make -C /lib/modules/2.6.35-6.slh.1-aptosid-amd64/build
>>> M=/opt/compat-wireless-2010-09-28 modules
>>> make[1]: Entering directory
>>> `/usr/src/linux-headers-2.6.35-6.slh.1-aptosid-amd64'
>>> ? LD ? ? ?/opt/compat-wireless-2010-09-28/compat/built-in.o
>>> ? CC [M] ?/opt/compat-wireless-2010-09-28/compat/main.o
>>> ? CC [M] ?/opt/compat-wireless-2010-09-28/compat/compat-2.6.36.o
>>> ? CC [M] ?/opt/compat-wireless-2010-09-28/compat/compat-2.6.37.o
>>> ? LD [M] ?/opt/compat-wireless-2010-09-28/compat/compat.o
>>> ? LD ? ? ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/built-in.o
>>> ? LD
>>> /opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/built-in.o
>>> ? CC [M] ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/main.o
>>> ? CC [M] ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/regd.o
>>> ? CC [M] ?/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/hw.o
>>> make[4]: *** No rule to make target
>>> `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath-', needed
>>> by `/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath/ath.o'. ?Stop.
>>> make[3]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless/ath]
>>> Error 2
>>> make[2]: *** [/opt/compat-wireless-2010-09-28/drivers/net/wireless] Error 2
>>> make[1]: *** [_module_/opt/compat-wireless-2010-09-28] Error 2
>>>
>>> I compared makefiles in the ath directory between working and
>>> non-working tarballs, but they are the same, so I'm not sure what's
>>> causing this. I am using Debian (apto)sid in the example above, but I
>>> also experience the same thing with Ubuntu Maverick/10.10.
>>>
>>> Thanks.
>>>
>>> _______________________________________________
>>> ath9k-devel mailing list
>>> ath9k-devel at lists.ath9k.org
>>> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>>>
>> _______________________________________________
>> ath9k-devel mailing list
>> ath9k-devel at lists.ath9k.org
>> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>
> Nop.? It skip to include key.o. The problem is with driver-select script.
> apply the change in function select_ath_driver
>
> <?????? perl -i -ne 'print if /'$1'/ || /CONFIG_ATH_/ || /ath-objs/ || /regd.o/ || /hw.o/ || key.o' $ATH_MAKEFILE
> ---
>>?????? perl -i -ne 'print if /'$1'/ || /CONFIG_ATH_/ || /ath-objs/ || /regd.o/ || /hw.o/ ' $ATH_MAKEFILE
>

Fixed.

  Luis

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

end of thread, other threads:[~2010-10-01 17:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-29  4:41 [ath9k-devel] Build issue with recent compat-wireless Dave Lentz
2010-09-29  7:12 ` Nakagawa, Ryo
2010-09-29  9:01   ` Rajkumar Manoharan
2010-10-01 17:45     ` Luis R. Rodriguez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.