RE: [gentoo-user] A simple explanation on how to get wireless working on my laptop ...

2005-10-07 Thread Richard Watson
OK ... You're a genius thanks ...!!! The following worked ...

# emerge -s 2100 returned net-wireless/ipw2100 and
net-wireless/ipw2100-firmware
# emerge -av ipw2100 ipw2100-firmware

I rebooted .. then after turning encryption back on and then:

# iwconfig returned new interface eth2
# iwconfig essid XX
# iwconfig key X
# dhcpcd eth2

Everything works ... So ... how do I enter this into /etc/conf.d/net so
it happens automatically at boot.

Richard
--
Internal Virus Database is out-of-date.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ipw2100 problems - ieee80211?

2006-10-11 Thread Bo Ørsted Andresen
On Thursday 12 October 2006 06:00, Lord Sauron wrote:
[SNIP]
 I isolated my problem to this:

 emerge ipw2100 ties in ieee80211, and that fails to compile because it
 says that the current kernel cannot have the option IEEE80211 in either
 module or enabled.  It needs it disabled.

 I tried to use menuconfig and disable it, however, the only way I can do
 that is by literally disabling ALL networking - drivers and all.

 Kernel is kernel 2.6.17-gentoo-r8.
[SNIP]
 If anyone knows a better/easier way, please help!
[SNIP] 

As of kernel 2.6.17 ipw2100 has been included in the kernel. Hence you 
shouldn't install either of net-wireless/ieee80211 or net-wireless/ipw2100. 
You still need to have net-wireless/ipw2100-firmware emerged though. I 
believe these are the kernel options you need (it works for me):

$ zgrep IPW2100\\\|IEEE80211 /proc/config.gz
CONFIG_IEEE80211=m
# CONFIG_IEEE80211_DEBUG is not set
CONFIG_IEEE80211_CRYPT_WEP=m
CONFIG_IEEE80211_CRYPT_CCMP=m
CONFIG_IEEE80211_CRYPT_TKIP=m
# CONFIG_IEEE80211_SOFTMAC is not set
CONFIG_IPW2100=m
# CONFIG_IPW2100_MONITOR is not set
# CONFIG_IPW2100_DEBUG is not set

-- 
Bo Andresen


pgppg3ZFKTM6C.pgp
Description: PGP signature


[gentoo-user] ipw in kernel-genkernel-x86-2.6.22-gentoo-r9

2007-12-15 Thread Richard Watson
Hi - Can anyone give me pointers on how to get ipw2100-firmware working
with kernel-genkernel-x86-2.6.22-gentoo-r9? It works fine with
kernel-genkernel-x86-2.6.22-gentoo-r8 where it's compiled in the kernel
but the same set-up fails in kernel-genkernel-x86-2.6.22-gentoo-r9. When
I run emerge ipw2100-firmware it seems to install OK, but the kernel
can't seem to find the module.

Thanks, Richard

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Wifi, problem, problem, problem

2013-12-17 Thread Peter Humphrey
On Tuesday 17 Dec 2013 10:44:46 Florian HEGRON wrote:

 When I add the support as module, it's not loaded. Where I buit-in it,
 the dmesg just say me that he can't load the firmware.

Sounds like you need to emerge sys-firmware/ipw2100-firmware.

-- 
Regards
Peter




Re: [gentoo-user] ipw2100 problems - ieee80211?

2006-10-11 Thread Lord Sauron
On Wednesday 11 October 2006 21:11, Bo Ørsted Andresen wrote:
 On Thursday 12 October 2006 06:00, Lord Sauron wrote:
 [SNIP]

  I isolated my problem to this:
 
  emerge ipw2100 ties in ieee80211, and that fails to compile because
  it says that the current kernel cannot have the option IEEE80211 in
  either module or enabled.  It needs it disabled.
 
  I tried to use menuconfig and disable it, however, the only way I
  can do that is by literally disabling ALL networking - drivers and
  all.
 
  Kernel is kernel 2.6.17-gentoo-r8.

 [SNIP]

  If anyone knows a better/easier way, please help!

 [SNIP]

 As of kernel 2.6.17 ipw2100 has been included in the kernel. Hence
 you shouldn't install either of net-wireless/ieee80211 or
 net-wireless/ipw2100. You still need to have
 net-wireless/ipw2100-firmware emerged though. I believe these are the
 kernel options you need (it works for me):

 $ zgrep IPW2100\\\|IEEE80211 /proc/config.gz
 CONFIG_IEEE80211=m
 # CONFIG_IEEE80211_DEBUG is not set
 CONFIG_IEEE80211_CRYPT_WEP=m
 CONFIG_IEEE80211_CRYPT_CCMP=m
 CONFIG_IEEE80211_CRYPT_TKIP=m
 # CONFIG_IEEE80211_SOFTMAC is not set
 CONFIG_IPW2100=m
 # CONFIG_IPW2100_MONITOR is not set
 # CONFIG_IPW2100_DEBUG is not set

The curious thing is that the firmware is installed.

I'm trying those exact configuration settings now.  I hope that works, 
otherwise I'm really in for quite a mess!


Is it at all possible that the driver is installed and working, and that 
I don't have whatever it takes to activate and use it?  For my wired 
ethernet card, there's a thing called net.eth0 and all that rot.  When 
I get the wireless driver working, how will I create net.wlan0 or 
net.eth1 or whatever it is?  I've not no experience there, and I've 
been searching rather diligently for a how-to or instruction set to 
help me with that.  I find it hard to think that something like that 
will generate itself ex nihlo, to say the least : )

-- 
http://lordsauronthegreat.googlepages.com/


pgpd2G9yrGdOW.pgp
Description: PGP signature


Re: [gentoo-user] A simple explanation on how to get wireless working on my laptop ...

2005-10-07 Thread Jason Cooper
Richard Watson ([EMAIL PROTECTED]) scribbled:
 :02:02.0 Network controller: Intel Corporation PRO/Wireless LAN 2100 3B
 Mini PCI Adapter (rev 04)
   Subsystem: Intel Corporation MIM2000/Centrino
   Flags: bus master, medium devsel, latency 128, IRQ 11
   Memory at 9000 (32-bit, non-prefetchable) [size=4K]
   Capabilities: [dc] Power Management version 2

This is the device you need to get working, make sure /usr/src/linux
points to your current kernel version and try this:

# emerge -av ipw2100 ipw2100-firmware

If that goes well, then do this:

# modprobe ipw2100

# iwconfig 

You should now have a device name.

# iwconfig dev essid any

# ifconfig dev up

# dhcpcd dev

# ping gentoo.org

hth,

jason

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ipw2100 problems - ieee80211?

2006-10-11 Thread Trenton Adams

You create net.eth0, or whatever, by linking /etc/init.d/net.ethX to
/etc/init.d/net.lo  The driver will create the actual kernel device
name of eth0, ath0, or whatever, and then your link will make it work.

On 10/11/06, Lord Sauron [EMAIL PROTECTED] wrote:

On Wednesday 11 October 2006 21:11, Bo Ørsted Andresen wrote:
 On Thursday 12 October 2006 06:00, Lord Sauron wrote:
 [SNIP]

  I isolated my problem to this:
 
  emerge ipw2100 ties in ieee80211, and that fails to compile because
  it says that the current kernel cannot have the option IEEE80211 in
  either module or enabled.  It needs it disabled.
 
  I tried to use menuconfig and disable it, however, the only way I
  can do that is by literally disabling ALL networking - drivers and
  all.
 
  Kernel is kernel 2.6.17-gentoo-r8.

 [SNIP]

  If anyone knows a better/easier way, please help!

 [SNIP]

 As of kernel 2.6.17 ipw2100 has been included in the kernel. Hence
 you shouldn't install either of net-wireless/ieee80211 or
 net-wireless/ipw2100. You still need to have
 net-wireless/ipw2100-firmware emerged though. I believe these are the
 kernel options you need (it works for me):

 $ zgrep IPW2100\\\|IEEE80211 /proc/config.gz
 CONFIG_IEEE80211=m
 # CONFIG_IEEE80211_DEBUG is not set
 CONFIG_IEEE80211_CRYPT_WEP=m
 CONFIG_IEEE80211_CRYPT_CCMP=m
 CONFIG_IEEE80211_CRYPT_TKIP=m
 # CONFIG_IEEE80211_SOFTMAC is not set
 CONFIG_IPW2100=m
 # CONFIG_IPW2100_MONITOR is not set
 # CONFIG_IPW2100_DEBUG is not set

The curious thing is that the firmware is installed.

I'm trying those exact configuration settings now.  I hope that works,
otherwise I'm really in for quite a mess!


Is it at all possible that the driver is installed and working, and that
I don't have whatever it takes to activate and use it?  For my wired
ethernet card, there's a thing called net.eth0 and all that rot.  When
I get the wireless driver working, how will I create net.wlan0 or
net.eth1 or whatever it is?  I've not no experience there, and I've
been searching rather diligently for a how-to or instruction set to
help me with that.  I find it hard to think that something like that
will generate itself ex nihlo, to say the least : )

--
http://lordsauronthegreat.googlepages.com/





--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Intel Wireless networking with kernel 2.6.14.

2005-10-29 Thread Richard Fish

John Green wrote:


Hi,

I never did get Intel wireless networking working with 2.6.13.x.

I just tried with kernel 2.6.14, and I get compilation errors when I try
to emerge
ieee80211.  It complained about lots of incompatible ieee80211 filles in
the Linux kernel  sources, but still failed when I removed the
complained-about files
by hand.  The most recent error messages looked like this
 



The 2.6.14 kernel includes the ipw2100  ipw2200 drivers, so you do not 
need to merge the external drivers or ieee80211, just the firmware.


However, I think the in-kernel version is lagging slightly behind the 
external version.  For my ipw2200, the external version loads firmware 
version 2.4, while the in-kernel version loads v2.2.


Fortunately both work for me, so I don't care.  If you want to try 
2.6.14, just enable:


Networking ---
   M Generic IEEE 802.11 Networking Stack
   M   IEEE 802.11 WEP encryption

Device Drivers ---
   Network device support ---
  Wireless LAN (non-hamradio) ---
 [*] Wireless LAN drivers (non-hamradio)  Wireless Extensions
 M   Intel PRO/Wireless 2100 Network Connection

Good luck,
-Richard

--
gentoo-user@gentoo.org mailing list



[gentoo-user] Intel Wireless networking with kernel 2.6.14.

2005-10-28 Thread John Green

Hi,

I never did get Intel wireless networking working with 2.6.13.x.

I just tried with kernel 2.6.14, and I get compilation errors when I try
to emerge
ieee80211.  It complained about lots of incompatible ieee80211 filles in
the Linux kernel  sources, but still failed when I removed the
complained-about files
by hand.  The most recent error messages looked like this
-
Checking in /usr/src/linux/ for ieee80211 components...

make -C /usr/src/linux
M=/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3
MODVERDIR=/var/tmp/portage/iee
#undef CONFIG_IEEE80211
sed: can't read /usr/src/linux//build/.config: No such file or directory
make[1]: Entering directory `/usr/src/linux-2.6.14'
 CC [M] 
/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/ieee80211_module.o
 CC [M] 
/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/ieee80211_tx.o
In file included from
/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/ieee80211_module.c:54:
   
/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/net/ieee80211.h:724:
error: redefinition of `is_broadca
include/linux/etherdevice.h:73: error: `is_broadcast_ether_addr'
previously defined here
In file included from
/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/ieee80211_tx.c:46:
   
/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/net/ieee80211.h:724:
error: redefinition of `is_broadca
include/linux/etherdevice.h:73: error: `is_broadcast_ether_addr'
previously defined here
make[2]: ***
[/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/ieee80211_module.o]
Error 1
make[2]: *** Waiting for unfinished jobs
make[2]: ***
[/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3/ieee80211_tx.o]
Error 1
make[1]: ***
[_module_/var/tmp/portage/ieee80211-1.0.3-r2/work/ieee80211-1.0.3] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.14' 
make: *** [modules] Error 2

!!! ERROR: net-wireless/ieee80211-1.0.3-r2 failed.
!!! Function linux-mod_src_compile, Line 505, Exitcode 2
!!! Unable to make 
KSRC=/usr/src/linux KSRC_OUTPUT=/usr/src/linux all.
!!! If you need support, post the topmost build error, NOT this
status message.

Are any versions of the Gentoo packages iee80211, ipw2100 and
ipw2100-firmware
expected to work with kernel 2.6.14?  Or is a different approach
required?  It does
seem odd to have to delete an ever-increasing list of vanilla kernel
files that someone
has worked to provide.

I also tried building the ipw2100 without first building ieee80211, but
that build failed
like this.

Looks like you forgot to remerge net-wireless/ieee80211 after
upgrading your kernel.

Hint: use sys-kernel/module-rebuild for keeping track of which
modules needs to be remerged after a kernel upgrade.

!!! ERROR: net-wireless/ipw2100-1.1.2-r3 failed.

I obviously don't know what I'm doing, so any guidance would be welcome.
Meanwhile, it's back to 2.6.12.6 for me.

TIA,

John Green
-- 
gentoo-user@gentoo.org mailing list