diff options
author | sam <sam@FreeBSD.org> | 2008-04-20 20:35:46 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-04-20 20:35:46 +0000 |
commit | 3569e353ca63336d80ab0143dd9669b0b9e6b123 (patch) | |
tree | bc7985c57e7ecfa1ac03e48c406a25430dba634b /sys/modules/ralfw | |
parent | 682b4ae9be70192e298129ada878af3486683aaf (diff) | |
download | FreeBSD-src-3569e353ca63336d80ab0143dd9669b0b9e6b123.zip FreeBSD-src-3569e353ca63336d80ab0143dd9669b0b9e6b123.tar.gz |
Multi-bss (aka vap) support for 802.11 devices.
Note this includes changes to all drivers and moves some device firmware
loading to use firmware(9) and a separate module (e.g. ral). Also there
no longer are separate wlan_scan* modules; this functionality is now
bundled into the wlan module.
Supported by: Hobnob and Marvell
Reviewed by: many
Obtained from: Atheros (some bits)
Diffstat (limited to 'sys/modules/ralfw')
-rw-r--r-- | sys/modules/ralfw/Makefile | 5 | ||||
-rw-r--r-- | sys/modules/ralfw/Makefile.inc | 15 | ||||
-rw-r--r-- | sys/modules/ralfw/rt2561/Makefile | 5 | ||||
-rw-r--r-- | sys/modules/ralfw/rt2561s/Makefile | 5 | ||||
-rw-r--r-- | sys/modules/ralfw/rt2661/Makefile | 6 |
5 files changed, 36 insertions, 0 deletions
diff --git a/sys/modules/ralfw/Makefile b/sys/modules/ralfw/Makefile new file mode 100644 index 0000000..3db53ad --- /dev/null +++ b/sys/modules/ralfw/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= rt2561 rt2561s rt2661 rt2860 + +.include <bsd.subdir.mk> diff --git a/sys/modules/ralfw/Makefile.inc b/sys/modules/ralfw/Makefile.inc new file mode 100644 index 0000000..2dc6b47 --- /dev/null +++ b/sys/modules/ralfw/Makefile.inc @@ -0,0 +1,15 @@ +# $FreeBSD$ + +# +# Common rules for building firmware. Note this gets auto-included +# by the subdir Makefile's as a consequence of included bsd.kmod.mk. +# +KMOD= ${IMG}fw +_FIRM= ${IMG}.fw + +CLEANFILES+= ${_FIRM} + +FIRMWS= ${_FIRM}:${KMOD} + +${_FIRM}: ${.CURDIR}/../../../contrib/dev/ral/${_FIRM}.uu + uudecode -p $? > ${.TARGET} diff --git a/sys/modules/ralfw/rt2561/Makefile b/sys/modules/ralfw/rt2561/Makefile new file mode 100644 index 0000000..71044a6 --- /dev/null +++ b/sys/modules/ralfw/rt2561/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +IMG= rt2561 + +.include <bsd.kmod.mk> diff --git a/sys/modules/ralfw/rt2561s/Makefile b/sys/modules/ralfw/rt2561s/Makefile new file mode 100644 index 0000000..40c6bc1 --- /dev/null +++ b/sys/modules/ralfw/rt2561s/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +IMG= rt2561s + +.include <bsd.kmod.mk> diff --git a/sys/modules/ralfw/rt2661/Makefile b/sys/modules/ralfw/rt2661/Makefile new file mode 100644 index 0000000..b372786 --- /dev/null +++ b/sys/modules/ralfw/rt2661/Makefile @@ -0,0 +1,6 @@ +# $FreeBSD$ + +IMG= rt2661 + +.include <bsd.kmod.mk> + |