Wi0 d-link DWL-510 installation on freebsd


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Wi0 d-link DWL-510 installation on freebsd
# 1  
Old 04-27-2004
CPU & Memory Wi0 d-link DWL-510 installation on freebsd

hello,

i have a problem installing a d-link dwl-510 wireless network card on freebsd 4.8

first, i already successfully installed a dwl- 500 (which is a pcmcia card in a pci card) by adding just a few simple lines to my /etc/rc.conf

pccard_enable="YES"
pccard_mem="DEFAULT"
pccard_ifconfig="inet 192.168.5.6 netmask 255.255.255.0 ssid myssid"
pccard_beep="2"

this works superb for the dwl-500

but not for the dwl-510 which is a pci card with an antenna on it

when i boot i get message:
pccardc not configured

and indeed, the light on the network card doesn't not blink, stays mute

when i do #ifconfig -a i don't see Wi0

when i do dmesg /dev/* i can see on pci0
<unknown card> (vendor=0x1186, dev=0x3300) at 14.0 irq 5

could anyone give me the golden tip to be able to enable this card?

thnx!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Can't boot FreeBSD after successful installation.

This is a cross post as I haven't got any solution and I'm badly in need of one. I've installed Slackware 14.2 in /dev/sda1 and x86Solaris 10 U6 in /dev/sda3 (sda2 is Linux swap)and boot menu was Solaris grub but, later deleted Solaris partition and installed FreeBSD12 (for i386) on the same... (3 Replies)
Discussion started by: vectrum
3 Replies

2. BSD

An installation script on freeBSD

Hello So i got my hands on some freebsd iso, installed it in a qcow2 image and installled git and bash. So far, so good. Git repositry retireved install script executed files got copied files have exec flag files are in $PATH / found by which / bash-completion works But still,... (3 Replies)
Discussion started by: sea
3 Replies

3. AIX

Cannot login to IBM 9110 - 510

Hi, I bought a second hand IBM machine model 9110 - 510. This machine is connected to a terminal (orange color text) through a serial port and when I bought the machine it shows its model and it ask for user id and password but i tried many without luck. I want to reset the root password... (4 Replies)
Discussion started by: yalmutawa
4 Replies

4. Red Hat

Dlink Dwl-g630 Wireless card

Hello, I'm extremely new to Linux. I've been a windows admin for years stupid me, should have got into Linux way back. So now playing catch up. I was hoping someone could help me get started. I've been online reading but getting confused a lot of info and very different from windows. I... (0 Replies)
Discussion started by: kidsusuki
0 Replies

5. BSD

FreeBSD Installation problems

Hi all, I'm new to the world of Unix/Linux (though not to computing in general) and I'm having a few issues installing FreeBSD (v6.2). Firstly, I realise that it's not the most user-friendly of distros, especially for newbies, but it's what I'm required to install so unfortunately I have to... (2 Replies)
Discussion started by: Techmonkey
2 Replies

6. Linux

freeBSD installation

why is my new freeBSD hanging at setting up hostname each time I plug in the network cable i use host name like X.ng I intend to configure it as a gateway (2 Replies)
Discussion started by: AkinOkin
2 Replies

7. BSD

FreeBSD / KDE installation woes...

Forgive the newbie question. I've been trying to install FreeBSD 5.4 on a new AMD64 based box at work today, and I started running into problems. Maybe some background is appropriate? Here goes... I've finished the first stage of development of a model in C++ which simulates airflow through a... (1 Reply)
Discussion started by: ForestryJim
1 Replies

8. Red Hat

Drviers for DWL 650

Hi I want to install drivers for DWL 650 on Redhat 9, Can any one send links to download the dirivers bye kranthi (1 Reply)
Discussion started by: kumar_d
1 Replies

9. UNIX for Advanced & Expert Users

snort installation on freebsd issues

i'm following the, "How to setup and secure Snort, MySQL and Acid on FreeBSD 4.6 Release" off of the snort.org website. in the documentation it says snort should be installed through the following: ----- make -DWITH_MYSQL -DWITH_FLEXRESP ; make install ----- later it says to do the... (13 Replies)
Discussion started by: xyyz
13 Replies

10. UNIX for Dummies Questions & Answers

how do u remove a messed up freebsd boot installation?

i messed up while installing freebsd into a dual os wannabe system. Now, how do i del it( so i wouldn't get prompted to choose freebsd during boot?)so that i could try installing a different flavour of linux? cheers:eek: (1 Reply)
Discussion started by: coffeecoolers
1 Replies
Login or Register to Ask a Question
DUMMY_CS(4)						     Kernel Interfaces Manual						       DUMMY_CS(4)

NAME
dummy_cs - PCMCIA dummy device driver SYNOPSIS
insmod dummy_cs.o [pc_debug=n] [free_ports=n] [irq_list=i,j,...] DESCRIPTION
The dummy_cs module has two purposes. It is intended as a demonstration of how to write the PCMCIA interface code for a client driver, and the source code is heavily commented. It is also written to function as a sort of generic ``point enabler'': when bound to any PCMCIA IO card, it will read the card's Configuration Information Structure, and configure the card appropriately. The configuration includes set- ting up IO and memory windows, configuring the card for interrupts, and initializing the card's PCMCIA configuration registers. It turns out that many cards report incomplete or inaccurate configuration information, due to vendor carelessness and the complexity of the data format. A vendor driver can generally take for granted many configuration details, so there is not much incentive for vendors to ensure that the on-card information is complete. Thus, the dummy_cs module is limited by its generality: since it makes no assumptions about card types, it is forced to rely on the card information, for better or worse. PARAMETERS
pc_debug=n Selects the PCMCIA debugging level. This parameter is only available if the module is compiled with debugging enabled. A non-zero value enables debugging. free_ports=n A flag indicating if the IO ports allocated for the card should be freed from the kernel resource maps. This is useful if the dummy driver is being used to configure a card in preparation for loading a specific PCMCIA-unaware driver. The default is 0 (false). irq_list=i,j,... Specifies the set of interrupts that may be allocated by this driver. AUTHOR
David Hinds - dahinds@users.sourceforge.net SEE ALSO
cardmgr(8), pcmcia(5). pcmcia-cs 2000/06/12 21:24:47 DUMMY_CS(4)