From owner-freebsd-hardware@FreeBSD.ORG Thu Jan 8 04:02:39 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35B4F16A4CE for ; Thu, 8 Jan 2004 04:02:39 -0800 (PST) Received: from be1.mail.zoznam.sk (be.zoznam.sk [62.65.179.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81F0343D1F for ; Thu, 8 Jan 2004 04:02:36 -0800 (PST) (envelope-from restman@azet.sk) Received: from [192.168.1.2] (HELO web2.zoznam.sk) by be1.mail.zoznam.sk (CommuniGate Pro SMTP 4.1.8) with ESMTP-TLS id 58906492 for hardware@freebsd.org; Thu, 08 Jan 2004 13:02:34 +0100 Received: from web2.zoznam.sk (localhost [127.0.0.1]) by web2.zoznam.sk (8.12.9/8.12.9) with ESMTP id i08C2XFW098171 for ; Thu, 8 Jan 2004 13:02:34 +0100 (CET) (envelope-from restman@azet.sk) Received: (from www@localhost) by web2.zoznam.sk (8.12.9/8.12.9/Submit) id i08C2AB0098169; Thu, 8 Jan 2004 13:02:10 +0100 (CET) (envelope-from restman@azet.sk) Message-Id: <200401081202.i08C2AB0098169@web2.zoznam.sk> X-Authentication-Warning: web2.zoznam.sk: www set sender to "RestMan " =?utf-8?Q?=20?= using -f Content-Disposition: inline Content-Transfer-Encoding: binary Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Date: Thu, 8 Jan 2004 12:02:10 UT From: "RestMan " =?utf-8?Q?=20?= To: hardware@freebsd.org X-Mailer: Zoznam Mailer v.1.1 Subject: wireless rtl8180 X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 12:02:39 -0000 Hi All, can somebody please help me to install realtek wireless PCI card with rtl8180L chipset? So far I did only few steps: I downloaded a driver from http://www.realtek.com.tw/downloads/downloads1-3.aspx?software=True&compamodel=RTL8180L (But I'm even not sure if this driver is suitable for FreeBSD) in makefile I changed NCLUDEPATH=-I/usr/src/linux-$(KERNELRELEASE)/include/ to INCLUDEPATH=-I /usr/src/include/ then I try to make, but I've got an error message: make: don't know how to make %.o:. Stop So I experimented a little with makefile (without knowing what I'm realy doing :-) ) I chanched a line: ${OPEN_OBJS}: %.o: %.h r8180_type.h r8180_export.h to ${OPEN_OBJS}: *.o: r8180_type.h r8180_export.h then it finally starts compile, but I found I do not have all needed header files output was as follows: homeserver# make all gcc -O6 -Wall -DMODULE -D__KERNEL__ -DLINUX -I /usr/src/include/ -DRTL_IO_MAP -DRTL_LITTLE_ENDIAN -DRTL_ACT_AS_STA -DRTL8180_DRV_ON_PC -DENABLE_DBG_PRINT -c -o r8180_pci_init.o r8180_pci_init.c r8180_pci_init.c:21:26: linux/module.h: No such file or directory r8180_pci_init.c:22:26: linux/kernel.h: No such file or directory r8180_pci_init.c:23:26: linux/config.h: No such file or directory r8180_pci_init.c:24:24: linux/init.h: No such file or directory r8180_pci_init.c:25:26: linux/ioport.h: No such file or directory r8180_pci_init.c:26:25: linux/sched.h: No such file or directory r8180_pci_init.c:27:25: linux/types.h: No such file or directory r8180_pci_init.c:28:24: linux/slab.h: No such file or directory r8180_pci_init.c:29:29: linux/netdevice.h: No such file or directory r8180_pci_init.c:30:23: linux/pci.h: No such file or directory r8180_pci_init.c:31:31: linux/etherdevice.h: No such file or directory r8180_pci_init.c:32:25: linux/delay.h: No such file or directory r8180_pci_init.c:33:50: linux/rtnetlink.h: No such file or directory r8180_pci_init.c:34:28: linux/wireless.h: No such file or directory r8180_pci_init.c:35:25: linux/timer.h: No such file or directory r8180_pci_init.c:36:72: linux/proc_fs.h: No such file or directory r8180_pci_init.c:37:20: asm/io.h: No such file or directory etc... I also found in forum a discussion between Anthony Naggs and Aladar Luke that they going to make their own driver for FreeBSD, but I did not found the driver itself. Thanks in advance for any help. Peter Ondrus