hallo
ich hab fedora 2 und möchte w-lan installieren.
das ist meine w-lan karte:
http://www.brack.ch/aspx/default.aspx?ID=7882&mod=artikel
ich habe diesen treiber herunter geladen und weiss nich recht wie ich ihn kompillieren und installieren kann(hab linux noch nicht so lange)
kann mir jemand helfen?
vielen dank!
Linux 15.009 Themen, 106.801 Beiträge
Building the driver
===================
To build the driver at the top level edit Makefile.inc to set the
pathname to your Linux kernel distribution. By default this is set to
/usr/src/linux.
If you are cross-compiling the driver for a different platform define
the CC, LD, and STRIP macros appropriately. For example:
#CC= /export/tools/bin/mips-linux-gcc
#LD= /export/tools/bin/mips-linux-ld
#STRIP= /export/tools/bin/mips-linux-strip
Once you've got Makefile.inc configured appropriately, do:
make
This will generate three important files:
driver/ath_pci.o (driver for PCI/Cardbus devices),
ath_hal/ath_hal.o (Atheros HAL), and
wlan/wlan.o (802.11 support layer)
These files can be loaded with insmod or modprobe; e.g.
insmod wlan/wlan.o
insmod ath_hal/ath_hal.o
insmod driver/ath_pci.o
(note you must load the wlan and ath_hal modules first as the driver
depends on them). You can also try:
make install
to install the drivers where they can be loaded automatically, i.e.
/lib/modules/
