summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjal2 <jal2>2003-07-07 22:02:13 +0000
committerjal2 <jal2>2003-07-07 22:02:13 +0000
commit47a7bcd1e7b1ffbdfc97a0fb03864034c48c6aa5 (patch)
treeb1afe4181bbb5443982d16c3d6692d75c65e763e
parent74776713fcb936754bc56a2acadbb6918a5470b5 (diff)
0.11beta2, new module for RFMD-ACC firmware variant
-rw-r--r--CHANGELOG13
-rw-r--r--Makefile15
2 files changed, 20 insertions, 8 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 73e4660..4db0d91 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,17 @@
-$Id: CHANGELOG,v 1.1 2003/06/01 20:04:32 jal2 Exp $
+$Id: CHANGELOG,v 1.2 2003/07/07 22:02:13 jal2 Exp $
+- new module at76c503-rfmd-acc.o for SMC2664W, which got RMFD radio,
+ but need a special firmware (Accton OEM products).
+- added regulatory domains MKK1 and Israel
+- added rudimentary ethtool support for SuSE's future hotplug
+- added nickname ioctl for iwconfig
+- added test of valid channel in reg. domain
+- added big endian patch (by Kevin Cernekee), changed defines in
+ ieee802_11.h
+- supress unsupported iwconfig modes (monitor, master) - patch by
+ Pavel Roskin
+
version 0.10 (2003-06-01)
------------
- added iwpriv commands to set scan channel times,
diff --git a/Makefile b/Makefile
index 3a97bc9..d925434 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-#$Id: Makefile,v 1.7 2003/06/16 19:46:46 jal2 Exp $
+#$Id: Makefile,v 1.8 2003/07/07 22:02:13 jal2 Exp $
-VERSION = 0.11beta1
+VERSION = 0.11beta2
CC=gcc
@@ -9,19 +9,20 @@ KERNEL_VERSION = $(shell uname -r)
KERNEL_SRC = /lib/modules/$(KERNEL_VERSION)/build
KERNEL_HEADERS = $(KERNEL_SRC)/include
-MODULES = at76c503.o usbdfu.o at76c503-rfmd.o at76c505-rfmd.o at76c503-i3861.o at76c503-i3863.o
+MODULES = at76c503.o usbdfu.o at76c503-rfmd.o at76c503-rfmd-acc.o \
+ at76c505-rfmd.o at76c503-i3861.o at76c503-i3863.o
-SRCS = at76c503.c usbdfu.c at76c503-rfmd.c at76c505-rfmd.c \
+SRCS = at76c503.c usbdfu.c at76c503-rfmd.c at76c505-rfmd.c at76c503-rfmd-acc.c \
at76c503-i3861.c at76c503-i3863.c
HDRS = at76c503.h ieee802_11.h usbdfu.h fw-rfmd-0.90.2-140.h \
- fw-rfmd-0.100.4-16.h fw-r505.h fw-i3861.h fw-i3863.h
+ fw-rfmd-1.101.0-84.h fw-rfmd-acc-1.101.0-84.h fw-r505.h fw-i3861.h fw-i3863.h
MODULE_DIR = $(DESTDIR)/lib/modules/$(KERNEL_VERSION)/kernel/drivers/usb/
CPPFLAGS = -D__KERNEL__ \
-DMODULE -DEXPORT_SYMTAB \
-DDRIVER_VERSION=\"v$(VERSION)\" \
-I$(KERNEL_HEADERS)
CFLAGS = -O2 -Wall -Wstrict-prototypes -pipe -fno-strict-aliasing \
- -fno-common -Wno-sign-compare
+ -fno-common -Wno-sign-compare -Wno-unused-variable
MODVER = $(shell if cat $(KERNEL_HEADERS)/linux/autoconf.h 2>/dev/null | \
grep -q '^[[:space:]]*\#define[[:space:]]*CONFIG_MODVERSIONS[[:space:]]*1'; \
@@ -34,7 +35,7 @@ endif
CCDEP = $(CC) $(CFLAGS) -M
TAR = tar
-DISTFILES = $(SRCS) $(HDRS) Makefile README COPYING scripts
+DISTFILES = $(SRCS) $(HDRS) Makefile README COPYING CHANGELOG scripts
TOPDISTFILES =
DISTNAME = at76c503-$(VERSION)
DISTDIR = ../dist