Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Official thread: "zen-sources" - Part II
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3 ... 19, 20, 21 ... 24, 25, 26  Next  
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
gimpel
Advocate
Advocate


Joined: 15 Oct 2004
Posts: 2720
Location: Munich, Bavaria

PostPosted: Fri Feb 08, 2008 8:47 pm    Post subject: Reply with quote

I'd try with portage first before posting to b.g.o.

1.5.4 works fine here.
_________________
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Fri Feb 08, 2008 9:22 pm    Post subject: Reply with quote

hirakendu wrote:
use 1.5.4 ...


++
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Fri Feb 08, 2008 9:35 pm    Post subject: Reply with quote

I know a lot of you zen-sources users love speed (and of course data safety) [the same goes for me], so could you please give my
tips / short guide a try

https://forums.gentoo.org/viewtopic-p-4835183.html#4835183

and tell if it improves your battery runtime / data throughput ?

TIA 8)
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
HecHacker1
Apprentice
Apprentice


Joined: 26 Jun 2003
Posts: 213
Location: UCSD

PostPosted: Sun Feb 10, 2008 7:44 am    Post subject: Re: rtap interface (Solved) Reply with quote

loeb-it wrote:
When trying to bring up the rtap interface it does not work:

galadriel mithrandir # ifconfig rtap0 up
SIOCSIFFLAGS: Das Argument ist ungültig

This occurs with ipwraw driver and also with ipw3945 driver, so it seems to be a more general issue.

It also worked with kamikaze-sources before.

Anyone else tried?

Addon:
------------------------------------------------------
In 2.6.24 kernels an interface can only be brought up with a mac address set. Created patches to fix this for ipw3945 and ipwraw drivers.

ipw3945-2.6.24-rtap_up.patch:
Code:
*** linux_bak/drivers/net/wireless/ipw3945.c    2008-02-06 19:20:41.000000000 +0100
--- linux/drivers/net/wireless/ipw3945.c        2008-02-07 00:43:10.000000000 +0100
***************
*** 15131,15134 ****
--- 15131,15142 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN); 
+
+       // hack end
+
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 16284,16287 ****
--- 16292,16305 ----
        priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
 
+       // ToDo: find real mac here
+
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A"); 
+
+       // hack end
+
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {



ipwraw-2.6.24-rtap_up.patch:
Code:
*** linux_bak/drivers/net/wireless/ipwraw.c     2008-02-06 23:41:16.000000000 +0100
--- linux/drivers/net/wireless/ipwraw.c 2008-02-07 00:43:06.000000000 +0100
***************
*** 7613,7616 ****
--- 7613,7624 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (param_rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN); 
+
+       // hack end
+
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 8343,8346 ****
--- 8351,8364 ----
        priv->prom_net_dev->hard_start_xmit = ipw_prom_hard_start_xmit;
 
+       // ToDo: find real mac here
+
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A");
+
+       // hack end
+
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {


I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Back to top
View user's profile Send private message
loeb-it
n00b
n00b


Joined: 15 May 2007
Posts: 37

PostPosted: Sun Feb 10, 2008 11:06 am    Post subject: Re: rtap interface (Solved) Reply with quote

HecHacker1 wrote:
loeb-it wrote:
When trying to bring up the rtap interface it does not work:

galadriel mithrandir # ifconfig rtap0 up
SIOCSIFFLAGS: Das Argument ist ungültig

This occurs with ipwraw driver and also with ipw3945 driver, so it seems to be a more general issue.

It also worked with kamikaze-sources before.

Anyone else tried?

Addon:
------------------------------------------------------
In 2.6.24 kernels an interface can only be brought up with a mac address set. Created patches to fix this for ipw3945 and ipwraw drivers.

ipw3945-2.6.24-rtap_up.patch:
Code:
*** linux_bak/drivers/net/wireless/ipw3945.c    2008-02-06 19:20:41.000000000 +0100
--- linux/drivers/net/wireless/ipw3945.c        2008-02-07 00:43:10.000000000 +0100
***************
*** 15131,15134 ****
--- 15131,15142 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN); 
+
+       // hack end
+
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 16284,16287 ****
--- 16292,16305 ----
        priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
 
+       // ToDo: find real mac here
+
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A"); 
+
+       // hack end
+
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {



ipwraw-2.6.24-rtap_up.patch:
Code:
*** linux_bak/drivers/net/wireless/ipwraw.c     2008-02-06 23:41:16.000000000 +0100
--- linux/drivers/net/wireless/ipwraw.c 2008-02-07 00:43:06.000000000 +0100
***************
*** 7613,7616 ****
--- 7613,7624 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (param_rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN); 
+
+       // hack end
+
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 8343,8346 ****
--- 8351,8364 ----
        priv->prom_net_dev->hard_start_xmit = ipw_prom_hard_start_xmit;
 
+       // ToDo: find real mac here
+
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A");
+
+       // hack end
+
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {


I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?


Hi,

afaik the ipw2200 driver is similar to the ipw3945 driver. Thus I think you can just take my patches and find the place in the ipw2200.c file to add the two important lines. Recompile the module and be happy :)
_________________
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Back to top
View user's profile Send private message
Civil
Retired Dev
Retired Dev


Joined: 24 Feb 2006
Posts: 16
Location: Berlin

PostPosted: Sun Feb 10, 2008 11:08 am    Post subject: Reply with quote

http://bugzilla.kernel.org/show_bug.cgi?id=9924
Have it been fixed?
_________________
‘Who controls the past controls the future: who controls the present controls the past.’
George Orwell ‘1984’
Back to top
View user's profile Send private message
Waninkoko
Guru
Guru


Joined: 13 May 2005
Posts: 549

PostPosted: Sun Feb 10, 2008 2:23 pm    Post subject: Reply with quote

Civil wrote:
http://bugzilla.kernel.org/show_bug.cgi?id=9924
Have it been fixed?


Fixed in latest master-devel. It includes last fix found on lkml.
Back to top
View user's profile Send private message
Waninkoko
Guru
Guru


Joined: 13 May 2005
Posts: 549

PostPosted: Sun Feb 10, 2008 2:56 pm    Post subject: Re: rtap interface (Solved) Reply with quote

HecHacker1 wrote:
I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?


Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.
Back to top
View user's profile Send private message
Dottout
l33t
l33t


Joined: 07 Mar 2006
Posts: 882

PostPosted: Sun Feb 10, 2008 7:42 pm    Post subject: Reply with quote

a small patch maybe useful to ext4 users. this allows to mount it as ext4 instead of ext4dev. what about including it in zen-sources?

Code:

--- fs/ext4/super.c.orig   2008-02-09 19:39:11.000000000 +0100
+++ fs/ext4/super.c   2008-02-09 19:39:37.000000000 +0100
@@ -3357,7 +3357,7 @@
 
 static struct file_system_type ext4dev_fs_type = {
    .owner      = THIS_MODULE,
-   .name      = "ext4dev",
+   .name      = "ext4",
    .get_sb      = ext4_get_sb,
    .kill_sb   = kill_block_super,
    .fs_flags   = FS_REQUIRES_DEV,
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sun Feb 10, 2008 10:20 pm    Post subject: Reply with quote

Waninkoko, just a short question on that local root exploit:

http://it.slashdot.org/it/08/02/10/2011257.shtml

disabling kvm [*] Virtualization / KVM
should be enough to be immune to it, right ?
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
Waninkoko
Guru
Guru


Joined: 13 May 2005
Posts: 549

PostPosted: Sun Feb 10, 2008 10:45 pm    Post subject: Reply with quote

kernelOfTruth wrote:
Waninkoko, just a short question on that local root exploit:

http://it.slashdot.org/it/08/02/10/2011257.shtml

disabling kvm [*] Virtualization / KVM
should be enough to be immune to it, right ?


Erm... no. Best way is using latest master-devel :P
Back to top
View user's profile Send private message
unK
l33t
l33t


Joined: 06 Feb 2007
Posts: 769

PostPosted: Sun Feb 10, 2008 11:09 pm    Post subject: Reply with quote

Btw, what is the difference between master and master-devel branch? ;p
_________________
ncmpcpp - featureful ncurses based MPD client inspired by ncmpc
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sun Feb 10, 2008 11:15 pm    Post subject: Reply with quote

thanks, Waninkoko,

could you please post the right syntax for merging a local linux-2.6.git repository & the zen-sources repository ?

as told by
Quote:
git clone --reference /path/to/your/linux-2.6.git/incarnation mirror_URL


I think I need to reclone zen-sources (conflicted merge ftw ! 8O )

update:


don't bother, got it:

Code:
 git clone --reference /usr/src/sources/linux-2.6/ git://repo.or.cz/linux-2.6/zen-sources.git


git is pretty powerful but needs lots of man(ual) reading :lol:
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Mon Feb 11, 2008 12:03 am    Post subject: Reply with quote

Quote:
CC [M] drivers/net/wireless/rtl8187_dev.o
CC [M] drivers/net/wireless/rtl8187_rtl8225.o
drivers/net/wireless/rtl8187_rtl8225.c: In function ‘rtl8225_rf_set_tx_power’:
drivers/net/wireless/rtl8187_rtl8225.c:286: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c:287: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c: In function ‘rtl8225z2_rf_set_tx_power’:
drivers/net/wireless/rtl8187_rtl8225.c:503: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c:504: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c: At top level:
drivers/net/wireless/rtl8187_rtl8225.c:779: error: stray ‘\361’ in program
drivers/net/wireless/rtl8187_rtl8225.c:779:3: warning: no newline at end of file
drivers/net/wireless/rtl8187_rtl8225.c:779: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ at end of input
make[3]: *** [drivers/net/wireless/rtl8187_rtl8225.o] Error 1
make[2]: *** [drivers/net/wireless] Error 2
make[1]: *** [drivers/net] Error 2
make: *** [drivers] Error 2


:(
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
loeb-it
n00b
n00b


Joined: 15 May 2007
Posts: 37

PostPosted: Mon Feb 11, 2008 2:00 pm    Post subject: Re: rtap interface (Solved) Reply with quote

Waninkoko wrote:
HecHacker1 wrote:
I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?


Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.


Haven't tried, buit I think so, since the change, that you can't brin up an interface only if it has got a mac address set afaik was introduced with 2.6.24. Thus this should not be limited to zen-sources. I already posted it to the ipw2200 mailing list when posting the patches to the zen-sources thread.
_________________
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Mon Feb 11, 2008 2:40 pm    Post subject: Reply with quote

Ok so all of our hosting attempts have sucked.... I am going to register zen-sources on sourceforge
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
zarzych
n00b
n00b


Joined: 13 Dec 2007
Posts: 9

PostPosted: Mon Feb 11, 2008 3:36 pm    Post subject: Reply with quote

Hi,

I have a ThinkPad t61 with nvidia graphics and Intel hda audio. I've read in the thinkpad_acpi documentation that sound control is supported but I can't get it right.

When I write up/down to /proc/acpi/ibm/volume it is notified there but no volume level difference can be noticed. Also the up/down buttons don't work (and don't produce acpi events even when I use 0xffffffff hotkey mask) except for unmuting. The mute button works ok.

I use newest master-devel.

Does any of you know the solution?
Back to top
View user's profile Send private message
termite
Guru
Guru


Joined: 06 May 2007
Posts: 466

PostPosted: Mon Feb 11, 2008 6:29 pm    Post subject: Reply with quote

There's a bug with intel hda audio and alsa that isn't fixed yet. I have the same problem: can't change volumes...
Back to top
View user's profile Send private message
jaclar
n00b
n00b


Joined: 07 Aug 2007
Posts: 17

PostPosted: Mon Feb 11, 2008 10:52 pm    Post subject: Reply with quote

Just compiled the kernel and iwlwifi with iwl4965 isn't able to associate with my accesspoint anymore. Get a "time out" error. With older kernel iwlwifi works smooth...
Back to top
View user's profile Send private message
HecHacker1
Apprentice
Apprentice


Joined: 26 Jun 2003
Posts: 213
Location: UCSD

PostPosted: Tue Feb 12, 2008 7:15 am    Post subject: Reply with quote

rmh3093 wrote:
Ok so all of our hosting attempts have sucked.... I am going to register zen-sources on sourceforge


I can offer bandwidth, I have 11TB per month of transfer with dreamhost. According to this article setting up a git repository should be possible on their servers:
http://wiki.dreamhost.com/Git

I can set you guys up with an account to a subdomain or folder where you can manage it. Let me know.
Back to top
View user's profile Send private message
HecHacker1
Apprentice
Apprentice


Joined: 26 Jun 2003
Posts: 213
Location: UCSD

PostPosted: Tue Feb 12, 2008 7:21 am    Post subject: Re: rtap interface (Solved) Reply with quote

Waninkoko wrote:
HecHacker1 wrote:
I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?


Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.


I haven't tried vanilla in a long time... but if you want I can. Apparently I just need to set the ethernet address for my radio tap interface due to changes in 2.6.24 (although I am sure there were 2.6.23 kernels with the same problem, I just haven't complained about it).

Maybe iwconfig can set the address... checking now.

EDIT: nope. iwconfig doesn't have a MAC address option. ifconfig does, but I get a "SIOCSIFFLAGS: Invalid argument" error and also a Unknown host error. ifconfig instructions are a bit unclear though.
Back to top
View user's profile Send private message
jespera
n00b
n00b


Joined: 03 Feb 2005
Posts: 27

PostPosted: Tue Feb 12, 2008 7:36 am    Post subject: Reply with quote

termite wrote:
There's a bug with intel hda audio and alsa that isn't fixed yet. I have the same problem: can't change volumes...


I compiled snd_hda_intel as a module and set the model in /etc/modules.d/alsa

Code:

options snd-hda-intel model=lg


That fixed all my volume problems.

I have another problem though: after suspending, there's no sound what-so-ever. I try turning the volume (front, master, pcm, ...) up and down, but still no sound.

Anybody else with such problems?
Back to top
View user's profile Send private message
loeb-it
n00b
n00b


Joined: 15 May 2007
Posts: 37

PostPosted: Tue Feb 12, 2008 12:02 pm    Post subject: Reply with quote

jaclar wrote:
Just compiled the kernel and iwlwifi with iwl4965 isn't able to associate with my accesspoint anymore. Get a "time out" error. With older kernel iwlwifi works smooth...


With iwl3945 driver I also cannot associate with (at least one) WEP network. The netwerks qou tried were WEP or WPA?

For me that's (and the rtap interface) the reason for staying with the ipw driver...
_________________
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Back to top
View user's profile Send private message
loeb-it
n00b
n00b


Joined: 15 May 2007
Posts: 37

PostPosted: Tue Feb 12, 2008 12:05 pm    Post subject: Re: rtap interface (Solved) Reply with quote

HecHacker1 wrote:
Waninkoko wrote:
HecHacker1 wrote:
I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?


Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.


I haven't tried vanilla in a long time... but if you want I can. Apparently I just need to set the ethernet address for my radio tap interface due to changes in 2.6.24 (although I am sure there were 2.6.23 kernels with the same problem, I just haven't complained about it).

Maybe iwconfig can set the address... checking now.

EDIT: nope. iwconfig doesn't have a MAC address option. ifconfig does, but I get a "SIOCSIFFLAGS: Invalid argument" error and also a Unknown host error. ifconfig instructions are a bit unclear though.


That's the reason I created the above patches for. They allow setting of the mac address for the rtap interface and set initially a fixed one. Since I didn't find out how to get the real mac address of the card I just set a fixed one...
_________________
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Back to top
View user's profile Send private message
jaclar
n00b
n00b


Joined: 07 Aug 2007
Posts: 17

PostPosted: Tue Feb 12, 2008 3:01 pm    Post subject: Reply with quote

loeb-it wrote:

With iwl3945 driver I also cannot associate with (at least one) WEP network. The netwerks qou tried were WEP or WPA?

For me that's (and the rtap interface) the reason for staying with the ipw driver...


I was until recently quite happy with the iwlwifi driver, worked like a charm for me. But what is this rtap interface?
I couldn't associate with a WPA network.
Would b nice to get it working again...
Back to top
View user's profile Send private message
Display posts from previous:   
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3 ... 19, 20, 21 ... 24, 25, 26  Next
Page 20 of 26

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum