mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-03 04:26:55 +00:00
madwifi build scripts cleanup
SVN-Revision: 11312
This commit is contained in:
parent
90baadbedc
commit
e97b3f0b95
@ -1,255 +1,157 @@
|
|||||||
Index: madwifi-trunk-r3314/tools/80211debug.c
|
Index: madwifi-trunk-r3314/tools/80211debug.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/80211debug.c 2008-02-20 18:10:46.235149183 +0100
|
--- madwifi-trunk-r3314.orig/tools/80211debug.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/80211debug.c 2008-02-20 18:10:46.695175398 +0100
|
+++ madwifi-trunk-r3314/tools/80211debug.c 2008-05-19 14:15:10.000000000 +0200
|
||||||
@@ -49,6 +49,10 @@
|
@@ -48,6 +48,7 @@
|
||||||
|
#include <ctype.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
#undef ARRAY_SIZE
|
#undef ARRAY_SIZE
|
||||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||||
|
@@ -185,7 +186,7 @@
|
||||||
@@ -184,9 +188,19 @@
|
|
||||||
}
|
|
||||||
#endif /* __linux__ */
|
#endif /* __linux__ */
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+a80211debug_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(a80211debug)(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
const char *ifname = "ath0";
|
const char *ifname = "ath0";
|
||||||
const char *cp, *tp;
|
const char *cp, *tp;
|
||||||
const char *sep;
|
|
||||||
Index: madwifi-trunk-r3314/tools/80211stats.c
|
Index: madwifi-trunk-r3314/tools/80211stats.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/80211stats.c 2008-02-20 18:10:46.243149638 +0100
|
--- madwifi-trunk-r3314.orig/tools/80211stats.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/80211stats.c 2008-02-20 18:10:46.695175398 +0100
|
+++ madwifi-trunk-r3314/tools/80211stats.c 2008-05-19 14:16:17.000000000 +0200
|
||||||
@@ -60,6 +60,10 @@
|
@@ -59,6 +59,7 @@
|
||||||
|
#include "net80211/ieee80211.h"
|
||||||
#include "net80211/ieee80211_crypto.h"
|
#include "net80211/ieee80211_crypto.h"
|
||||||
#include "net80211/ieee80211_ioctl.h"
|
#include "net80211/ieee80211_ioctl.h"
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
#ifndef SIOCG80211STATS
|
#ifndef SIOCG80211STATS
|
||||||
#define SIOCG80211STATS (SIOCDEVPRIVATE + 2)
|
#define SIOCG80211STATS (SIOCDEVPRIVATE + 2)
|
||||||
#endif
|
@@ -240,7 +241,7 @@
|
||||||
@@ -239,9 +243,19 @@
|
|
||||||
#undef STAT
|
|
||||||
}
|
}
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+a80211stats_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(a80211stats)(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
int c, len;
|
int c, len;
|
||||||
struct ieee80211req_sta_info *si;
|
struct ieee80211req_sta_info *si;
|
||||||
u_int8_t buf[24*1024], *cp;
|
|
||||||
Index: madwifi-trunk-r3314/tools/athchans.c
|
Index: madwifi-trunk-r3314/tools/athchans.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/athchans.c 2008-02-20 18:10:46.247149868 +0100
|
--- madwifi-trunk-r3314.orig/tools/athchans.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/athchans.c 2008-02-20 18:10:46.703175854 +0100
|
+++ madwifi-trunk-r3314/tools/athchans.c 2008-05-19 14:15:28.000000000 +0200
|
||||||
@@ -59,6 +59,10 @@
|
@@ -58,6 +58,7 @@
|
||||||
|
#include "net80211/ieee80211.h"
|
||||||
#include "net80211/ieee80211_crypto.h"
|
#include "net80211/ieee80211_crypto.h"
|
||||||
#include "net80211/ieee80211_ioctl.h"
|
#include "net80211/ieee80211_ioctl.h"
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
static int s = -1;
|
static int s = -1;
|
||||||
static const char *progname;
|
static const char *progname;
|
||||||
|
@@ -140,8 +141,9 @@
|
||||||
@@ -140,9 +144,20 @@
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MAXCHAN ((int)(sizeof(struct ieee80211req_chanlist) * NBBY))
|
#define MAXCHAN ((int)(sizeof(struct ieee80211req_chanlist) * NBBY))
|
||||||
+
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+athchans_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
+
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(athchans)(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
const char *ifname = "wifi0";
|
const char *ifname = "wifi0";
|
||||||
struct ieee80211req_chanlist chanlist;
|
struct ieee80211req_chanlist chanlist;
|
||||||
int c;
|
|
||||||
Index: madwifi-trunk-r3314/tools/athctrl.c
|
Index: madwifi-trunk-r3314/tools/athctrl.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/athctrl.c 2008-02-20 18:10:46.255150323 +0100
|
--- madwifi-trunk-r3314.orig/tools/athctrl.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/athctrl.c 2008-02-20 18:10:46.707176083 +0100
|
+++ madwifi-trunk-r3314/tools/athctrl.c 2008-05-19 14:15:44.000000000 +0200
|
||||||
@@ -53,6 +53,10 @@
|
@@ -52,6 +52,7 @@
|
||||||
|
|
||||||
#include <net/if.h>
|
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
static int
|
|
||||||
setsysctrl(const char *dev, const char *control , u_long value)
|
|
||||||
{
|
|
||||||
@@ -87,9 +91,19 @@
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+athctrl_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
|
||||||
main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
char device[IFNAMSIZ + 1];
|
|
||||||
int distance = -1;
|
|
||||||
int c;
|
|
||||||
Index: madwifi-trunk-r3314/tools/athdebug.c
|
|
||||||
===================================================================
|
|
||||||
--- madwifi-trunk-r3314.orig/tools/athdebug.c 2008-02-20 18:10:46.263150778 +0100
|
|
||||||
+++ madwifi-trunk-r3314/tools/athdebug.c 2008-02-20 18:10:46.711176309 +0100
|
|
||||||
@@ -52,6 +52,10 @@
|
|
||||||
#include <getopt.h>
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
#include <net/if.h>
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
static int
|
||||||
|
setsysctrl(const char *dev, const char *control , u_long value)
|
||||||
|
@@ -88,7 +89,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(athctrl)(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
char device[IFNAMSIZ + 1];
|
||||||
|
int distance = -1;
|
||||||
|
Index: madwifi-trunk-r3314/tools/athdebug.c
|
||||||
|
===================================================================
|
||||||
|
--- madwifi-trunk-r3314.orig/tools/athdebug.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
|
+++ madwifi-trunk-r3314/tools/athdebug.c 2008-05-19 14:15:59.000000000 +0200
|
||||||
|
@@ -51,6 +51,7 @@
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <getopt.h>
|
||||||
|
#include <err.h>
|
||||||
|
+#include "do_multi.h"
|
||||||
|
|
||||||
#undef ARRAY_SIZE
|
#undef ARRAY_SIZE
|
||||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||||
|
@@ -194,7 +195,7 @@
|
||||||
@@ -193,9 +197,20 @@
|
|
||||||
}
|
|
||||||
#endif /* __linux__ */
|
#endif /* __linux__ */
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+athdebug_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(athdebug)(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
const char *ifname = "wifi0";
|
const char *ifname = "wifi0";
|
||||||
#else
|
|
||||||
Index: madwifi-trunk-r3314/tools/athkey.c
|
Index: madwifi-trunk-r3314/tools/athkey.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/athkey.c 2008-02-20 18:10:46.271151234 +0100
|
--- madwifi-trunk-r3314.orig/tools/athkey.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/athkey.c 2008-02-20 18:10:46.711176309 +0100
|
+++ madwifi-trunk-r3314/tools/athkey.c 2008-05-19 14:13:06.000000000 +0200
|
||||||
@@ -59,6 +59,10 @@
|
@@ -58,6 +58,7 @@
|
||||||
|
#include "net80211/ieee80211.h"
|
||||||
#include "net80211/ieee80211_crypto.h"
|
#include "net80211/ieee80211_crypto.h"
|
||||||
#include "net80211/ieee80211_ioctl.h"
|
#include "net80211/ieee80211_ioctl.h"
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
static int s = -1;
|
static int s = -1;
|
||||||
static const char *progname;
|
static const char *progname;
|
||||||
|
@@ -213,8 +214,7 @@
|
||||||
@@ -213,9 +217,19 @@
|
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
-int
|
||||||
+
|
-main(int argc, char *argv[])
|
||||||
+int
|
+int CMD(athkey)(int argc, char *argv[])
|
||||||
+athkey_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
|
||||||
main(int argc, char *argv[])
|
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
const char *ifname = "wifi0";
|
const char *ifname = "wifi0";
|
||||||
struct ieee80211req_key setkey;
|
struct ieee80211req_key setkey;
|
||||||
struct ieee80211req_del_key delkey;
|
|
||||||
Index: madwifi-trunk-r3314/tools/athstats.c
|
Index: madwifi-trunk-r3314/tools/athstats.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/athstats.c 2008-02-20 18:10:46.275151463 +0100
|
--- madwifi-trunk-r3314.orig/tools/athstats.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/athstats.c 2008-02-20 18:10:46.711176309 +0100
|
+++ madwifi-trunk-r3314/tools/athstats.c 2008-05-19 14:13:44.000000000 +0200
|
||||||
@@ -66,6 +66,10 @@
|
@@ -65,6 +65,7 @@
|
||||||
|
|
||||||
#undef ARRAY_SIZE
|
#undef ARRAY_SIZE
|
||||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
static const struct {
|
static const struct {
|
||||||
u_int phyerr;
|
u_int phyerr;
|
||||||
const char* desc;
|
@@ -228,7 +229,7 @@
|
||||||
@@ -227,9 +231,20 @@
|
|
||||||
signalled = 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+athstats_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(athstats)(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
const char *ifname = "wifi0";
|
const char *ifname = "wifi0";
|
||||||
#else
|
|
||||||
Index: madwifi-trunk-r3314/tools/do_multi.c
|
Index: madwifi-trunk-r3314/tools/do_multi.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ madwifi-trunk-r3314/tools/do_multi.c 2008-02-20 18:10:46.711176309 +0100
|
+++ madwifi-trunk-r3314/tools/do_multi.c 2008-05-19 14:56:28.000000000 +0200
|
||||||
@@ -0,0 +1,32 @@
|
@@ -0,0 +1,32 @@
|
||||||
+#include <string.h>
|
+#include <string.h>
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
@ -286,9 +188,9 @@ Index: madwifi-trunk-r3314/tools/do_multi.c
|
|||||||
Index: madwifi-trunk-r3314/tools/do_multi.h
|
Index: madwifi-trunk-r3314/tools/do_multi.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ madwifi-trunk-r3314/tools/do_multi.h 2008-02-20 18:10:46.711176309 +0100
|
+++ madwifi-trunk-r3314/tools/do_multi.h 2008-05-19 14:42:44.000000000 +0200
|
||||||
@@ -0,0 +1,10 @@
|
@@ -0,0 +1,15 @@
|
||||||
+
|
+#ifdef DO_MULTI
|
||||||
+int a80211debug_init(int argc, char *argv[]);
|
+int a80211debug_init(int argc, char *argv[]);
|
||||||
+int a80211stats_init(int argc, char *argv[]);
|
+int a80211stats_init(int argc, char *argv[]);
|
||||||
+int athchans_init(int argc, char *argv[]);
|
+int athchans_init(int argc, char *argv[]);
|
||||||
@ -298,27 +200,35 @@ Index: madwifi-trunk-r3314/tools/do_multi.h
|
|||||||
+int athstats_init(int argc, char *argv[]);
|
+int athstats_init(int argc, char *argv[]);
|
||||||
+int wlanconfig_init(int argc, char *argv[]);
|
+int wlanconfig_init(int argc, char *argv[]);
|
||||||
+int athinfo_init(int argc, char *argv[]);
|
+int athinfo_init(int argc, char *argv[]);
|
||||||
|
+
|
||||||
|
+#define CMD(name) name##_init
|
||||||
|
+#else
|
||||||
|
+#define CMD(name) main
|
||||||
|
+#endif
|
||||||
Index: madwifi-trunk-r3314/tools/Makefile
|
Index: madwifi-trunk-r3314/tools/Makefile
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/Makefile 2008-02-20 18:10:46.295152602 +0100
|
--- madwifi-trunk-r3314.orig/tools/Makefile 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/Makefile 2008-02-20 18:10:46.715176538 +0100
|
+++ madwifi-trunk-r3314/tools/Makefile 2008-05-19 14:56:55.000000000 +0200
|
||||||
@@ -47,9 +47,12 @@
|
@@ -46,56 +46,55 @@
|
||||||
|
HAL= $(TOP)/hal
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
+all: compile
|
||||||
|
|
||||||
-ALL= athstats 80211stats athkey athchans athctrl \
|
-ALL= athstats 80211stats athkey athchans athctrl \
|
||||||
+ALLPROGS= athstats 80211stats athkey athchans athctrl \
|
+ALLPROGS= athstats 80211stats athkey athchans athctrl \
|
||||||
athdebug 80211debug wlanconfig ath_info
|
athdebug 80211debug wlanconfig ath_info
|
||||||
|
|
||||||
+OBJS= $(patsubst %,%.o,$(ALLPROGS) do_multi)
|
-all: $(ALL)
|
||||||
+ALL= ${OBJS} madwifi_multi
|
+OBJS= $(patsubst %,%.o,$(ALLPROGS))
|
||||||
+
|
|
||||||
all: $(ALL)
|
|
||||||
|
|
||||||
INCS= -I. -I$(HAL) -I$(TOP) -I$(ATH_HAL)
|
-INCS= -I. -I$(HAL) -I$(TOP) -I$(ATH_HAL)
|
||||||
@@ -59,25 +62,31 @@
|
+INCS= -I. -I../ath -I$(HAL) -I$(TOP) -I$(ATH_HAL)
|
||||||
|
CFLAGS= -g -O2 -Wall
|
||||||
|
ALL_CFLAGS= $(CFLAGS) $(INCS)
|
||||||
|
LDFLAGS=
|
||||||
|
|
||||||
all: $(ALL)
|
-all: $(ALL)
|
||||||
|
|
||||||
-athstats: athstats.c
|
-athstats: athstats.c
|
||||||
- $(CC) -o athstats $(ALL_CFLAGS) -I$(TOP)/ath $(LDFLAGS) athstats.c
|
- $(CC) -o athstats $(ALL_CFLAGS) -I$(TOP)/ath $(LDFLAGS) athstats.c
|
||||||
@ -338,84 +248,91 @@ Index: madwifi-trunk-r3314/tools/Makefile
|
|||||||
- $(CC) -o 80211debug $(ALL_CFLAGS) $(LDFLAGS) 80211debug.c
|
- $(CC) -o 80211debug $(ALL_CFLAGS) $(LDFLAGS) 80211debug.c
|
||||||
-ath_info: ath_info.c
|
-ath_info: ath_info.c
|
||||||
- $(CC) -o ath_info $(CFLAGS) ath_info.c
|
- $(CC) -o ath_info $(CFLAGS) ath_info.c
|
||||||
-
|
+ifneq ($(DO_MULTI),)
|
||||||
+athstats.o: athstats.c
|
+ALL_CFLAGS += -DDO_MULTI=1
|
||||||
+ ${CC} -c -o athstats.o -DDOMULTI=1 ${ALL_CFLAGS} -I../ath athstats.c
|
+%.o: %.c
|
||||||
+80211stats.o: 80211stats.c
|
+ ${CC} $(ALL_CFLAGS) -c -o $@ $<
|
||||||
+ ${CC} -c -o 80211stats.o -DDOMULTI=1 ${ALL_CFLAGS} 80211stats.c
|
+
|
||||||
+ath_info.o: ath_info.c
|
+madwifi_multi: $(OBJS) do_multi.o
|
||||||
+ ${CC} -c -o ath_info.o -DDOMULTI=1 ${ALL_CFLAGS} ath_info.c
|
+ $(CC) -o $@ $^
|
||||||
+athkey.o: athkey.c
|
+
|
||||||
+ ${CC} -c -o athkey.o -DDOMULTI=1 ${ALL_CFLAGS} athkey.c
|
+compile: madwifi_multi
|
||||||
+athchans.o: athchans.c
|
+ for i in $(ALLPROGS); do \
|
||||||
+ ${CC} -c -o athchans.o -DDOMULTI=1 ${ALL_CFLAGS} athchans.c
|
+ ln -s -f madwifi_multi $$i; \
|
||||||
+athctrl.o: athctrl.c
|
|
||||||
+ ${CC} -c -o athctrl.o -DDOMULTI=1 ${ALL_CFLAGS} athctrl.c
|
|
||||||
+athdebug.o: athdebug.c
|
|
||||||
+ ${CC} -c -o athdebug.o -DDOMULTI=1 ${ALL_CFLAGS} athdebug.c
|
|
||||||
+wlanconfig.o: wlanconfig.c
|
|
||||||
+ ${CC} -c -o wlanconfig.o -DDOMULTI=1 ${ALL_CFLAGS} wlanconfig.c
|
|
||||||
+80211debug.o: 80211debug.c
|
|
||||||
+ ${CC} -c -o 80211debug.o -DDOMULTI=1 ${ALL_CFLAGS} 80211debug.c
|
|
||||||
+do_multi.o: do_multi.c
|
|
||||||
+ ${CC} -c -o do_multi.o -DDOMULTI=1 ${ALL_CFLAGS} do_multi.c
|
|
||||||
+madwifi_multi: $(OBJS)
|
|
||||||
+ ${CC} -o madwifi_multi ${LDFLAGS} ${OBJS}
|
|
||||||
+ for i in athstats 80211stats athkey athchans athctrl athdebug wlanconfig 80211debug; do \
|
|
||||||
+ ln -s -f madwifi_multi $$i; \
|
|
||||||
+ done
|
+ done
|
||||||
|
+else
|
||||||
|
+$(ALLPROGS):
|
||||||
|
+ $(CC) $(ALL_CFLAGS) -o $@ $@.c
|
||||||
|
+
|
||||||
|
+compile: $(ALLPROGS)
|
||||||
|
+endif
|
||||||
|
|
||||||
|
|
||||||
install: $(ALL)
|
install: $(ALL)
|
||||||
install -d $(DESTDIR)$(BINDIR)
|
install -d $(DESTDIR)$(BINDIR)
|
||||||
|
- for i in $(ALL); do \
|
||||||
|
+ for i in $(ALLPROGS) $(if $(DO_MULTI),madwifi_multi); do \
|
||||||
|
install $$i $(DESTDIR)$(BINDIR)/$$i; \
|
||||||
|
- $(STRIP) $(DESTDIR)$(BINDIR)/$$i; \
|
||||||
|
done
|
||||||
|
install -d $(DESTDIR)$(MANDIR)/man8
|
||||||
|
install -m 0644 man/*.8 $(DESTDIR)$(MANDIR)/man8
|
||||||
|
install $(TOP)/scripts/madwifi-unload $(DESTDIR)$(BINDIR)/madwifi-unload
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
- for i in $(ALL); do \
|
||||||
|
+ for i in $(ALLPROGS) $(if $(DO_MULTI),madwifi_multi); do \
|
||||||
|
rm -f $(DESTDIR)$(BINDIR)/$$i; \
|
||||||
|
done
|
||||||
|
- for i in $(ALL:=.8); do \
|
||||||
|
- rm -f $(DESTDIR)$(MANDIR)/man8/$$i; \
|
||||||
|
+ for i in $(ALLPROGS); do \
|
||||||
|
+ rm -f $(DESTDIR)$(MANDIR)/man8/$$i.8; \
|
||||||
|
done
|
||||||
|
|
||||||
|
clean:
|
||||||
|
- rm -f $(ALL) core a.out
|
||||||
|
+ rm -f $(ALLPROGS) madwifi_multi *.o core a.out
|
||||||
Index: madwifi-trunk-r3314/tools/wlanconfig.c
|
Index: madwifi-trunk-r3314/tools/wlanconfig.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/wlanconfig.c 2008-02-20 18:10:46.299152832 +0100
|
--- madwifi-trunk-r3314.orig/tools/wlanconfig.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/wlanconfig.c 2008-02-20 18:10:46.715176538 +0100
|
+++ madwifi-trunk-r3314/tools/wlanconfig.c 2008-05-19 14:14:07.000000000 +0200
|
||||||
@@ -62,6 +62,10 @@
|
@@ -61,6 +61,7 @@
|
||||||
|
#include "net80211/ieee80211.h"
|
||||||
#include "net80211/ieee80211_crypto.h"
|
#include "net80211/ieee80211_crypto.h"
|
||||||
#include "net80211/ieee80211_ioctl.h"
|
#include "net80211/ieee80211_ioctl.h"
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+#include "do_multi.h"
|
+#include "do_multi.h"
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/*
|
/*
|
||||||
* These are taken from ieee80211_node.h
|
* These are taken from ieee80211_node.h
|
||||||
*/
|
@@ -100,7 +101,7 @@
|
||||||
@@ -99,9 +103,19 @@
|
|
||||||
|
|
||||||
static int verbose = 0;
|
static int verbose = 0;
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
|
||||||
+
|
|
||||||
+int
|
|
||||||
+wlanconfig_init(int argc, char *argv[])
|
|
||||||
+{
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
-main(int argc, char *argv[])
|
||||||
|
+CMD(wlanconfig)(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
+
|
|
||||||
+#endif
|
|
||||||
const char *ifname, *cmd;
|
const char *ifname, *cmd;
|
||||||
unsigned char bnounit = 0;
|
unsigned char bnounit = 0;
|
||||||
char *if_base = NULL;
|
|
||||||
Index: madwifi-trunk-r3314/tools/ath_info.c
|
Index: madwifi-trunk-r3314/tools/ath_info.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/ath_info.c 2008-02-20 18:10:46.311153513 +0100
|
--- madwifi-trunk-r3314.orig/tools/ath_info.c 2008-05-19 13:58:46.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/ath_info.c 2008-02-20 18:10:46.715176538 +0100
|
+++ madwifi-trunk-r3314/tools/ath_info.c 2008-05-19 14:44:45.000000000 +0200
|
||||||
@@ -738,7 +738,12 @@
|
@@ -98,6 +98,7 @@
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <endian.h>
|
||||||
|
#include <byteswap.h>
|
||||||
|
+#include "do_multi.h"
|
||||||
|
|
||||||
|
#undef ARRAY_SIZE
|
||||||
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||||
|
@@ -738,7 +739,8 @@
|
||||||
"unlawful radio transmissions!\n\n");
|
"unlawful radio transmissions!\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
+#ifdef DOMULTI
|
-int main(int argc, char *argv[])
|
||||||
+int
|
+int
|
||||||
+athinfo_init(int argc, char *argv[])
|
+CMD(athinfo)(int argc, char *argv[])
|
||||||
+#else
|
|
||||||
int main(int argc, char *argv[])
|
|
||||||
+#endif
|
|
||||||
{
|
{
|
||||||
u_int32_t dev_addr;
|
u_int32_t dev_addr;
|
||||||
u_int16_t eeprom_header, srev, phy_rev_5ghz, phy_rev_2ghz;
|
u_int16_t eeprom_header, srev, phy_rev_5ghz, phy_rev_2ghz;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Index: madwifi-trunk-r3314/ath/if_ath.c
|
Index: madwifi-trunk-r3314/ath/if_ath.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath/if_ath.c 2008-03-07 01:47:43.177523993 +0100
|
--- madwifi-trunk-r3314.orig/ath/if_ath.c 2008-05-19 14:54:42.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath/if_ath.c 2008-03-07 01:47:43.193516906 +0100
|
+++ madwifi-trunk-r3314/ath/if_ath.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -42,7 +42,6 @@
|
@@ -42,7 +42,6 @@
|
||||||
* This software is derived from work of Atsushi Onoe; his contribution
|
* This software is derived from work of Atsushi Onoe; his contribution
|
||||||
* is greatly appreciated.
|
* is greatly appreciated.
|
||||||
@ -103,8 +103,8 @@ Index: madwifi-trunk-r3314/ath/if_ath.c
|
|||||||
* necessary actions (such as a DFS reaction to radar). */
|
* necessary actions (such as a DFS reaction to radar). */
|
||||||
Index: madwifi-trunk-r3314/ath_rate/amrr/amrr.c
|
Index: madwifi-trunk-r3314/ath_rate/amrr/amrr.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath_rate/amrr/amrr.c 2008-03-07 01:45:09.410373793 +0100
|
--- madwifi-trunk-r3314.orig/ath_rate/amrr/amrr.c 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath_rate/amrr/amrr.c 2008-03-07 01:47:43.193516906 +0100
|
+++ madwifi-trunk-r3314/ath_rate/amrr/amrr.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -70,7 +70,9 @@
|
@@ -70,7 +70,9 @@
|
||||||
|
|
||||||
#include "amrr.h"
|
#include "amrr.h"
|
||||||
@ -117,8 +117,8 @@ Index: madwifi-trunk-r3314/ath_rate/amrr/amrr.c
|
|||||||
if (sc->sc_debug & 0x10) \
|
if (sc->sc_debug & 0x10) \
|
||||||
Index: madwifi-trunk-r3314/ath_rate/minstrel/minstrel.c
|
Index: madwifi-trunk-r3314/ath_rate/minstrel/minstrel.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath_rate/minstrel/minstrel.c 2008-03-07 01:45:09.418374247 +0100
|
--- madwifi-trunk-r3314.orig/ath_rate/minstrel/minstrel.c 2008-05-19 14:54:42.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath_rate/minstrel/minstrel.c 2008-03-07 01:47:43.201513363 +0100
|
+++ madwifi-trunk-r3314/ath_rate/minstrel/minstrel.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -117,7 +117,9 @@
|
@@ -117,7 +117,9 @@
|
||||||
|
|
||||||
#include "minstrel.h"
|
#include "minstrel.h"
|
||||||
@ -131,8 +131,8 @@ Index: madwifi-trunk-r3314/ath_rate/minstrel/minstrel.c
|
|||||||
ATH_DEBUG_RATE = 0x00000010 /* rate control */
|
ATH_DEBUG_RATE = 0x00000010 /* rate control */
|
||||||
Index: madwifi-trunk-r3314/ath_rate/onoe/onoe.c
|
Index: madwifi-trunk-r3314/ath_rate/onoe/onoe.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath_rate/onoe/onoe.c 2008-03-07 01:45:09.426374706 +0100
|
--- madwifi-trunk-r3314.orig/ath_rate/onoe/onoe.c 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath_rate/onoe/onoe.c 2008-03-07 01:47:43.205511589 +0100
|
+++ madwifi-trunk-r3314/ath_rate/onoe/onoe.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -66,7 +66,9 @@
|
@@ -66,7 +66,9 @@
|
||||||
|
|
||||||
#include "onoe.h"
|
#include "onoe.h"
|
||||||
@ -145,8 +145,8 @@ Index: madwifi-trunk-r3314/ath_rate/onoe/onoe.c
|
|||||||
ATH_DEBUG_RATE = 0x00000010, /* rate control */
|
ATH_DEBUG_RATE = 0x00000010, /* rate control */
|
||||||
Index: madwifi-trunk-r3314/ath_rate/sample/sample.c
|
Index: madwifi-trunk-r3314/ath_rate/sample/sample.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath_rate/sample/sample.c 2008-03-07 01:45:09.434375158 +0100
|
--- madwifi-trunk-r3314.orig/ath_rate/sample/sample.c 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath_rate/sample/sample.c 2008-03-07 01:47:43.209509818 +0100
|
+++ madwifi-trunk-r3314/ath_rate/sample/sample.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -68,7 +68,9 @@
|
@@ -68,7 +68,9 @@
|
||||||
|
|
||||||
#include "sample.h"
|
#include "sample.h"
|
||||||
@ -160,8 +160,8 @@ Index: madwifi-trunk-r3314/ath_rate/sample/sample.c
|
|||||||
ATH_DEBUG_RATE = 0x00000010, /* rate control */
|
ATH_DEBUG_RATE = 0x00000010, /* rate control */
|
||||||
Index: madwifi-trunk-r3314/tools/do_multi.c
|
Index: madwifi-trunk-r3314/tools/do_multi.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/do_multi.c 2008-03-07 01:45:09.442375616 +0100
|
--- madwifi-trunk-r3314.orig/tools/do_multi.c 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/do_multi.c 2008-03-07 01:47:43.213508047 +0100
|
+++ madwifi-trunk-r3314/tools/do_multi.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -9,16 +9,20 @@
|
@@ -9,16 +9,20 @@
|
||||||
|
|
||||||
progname = basename(argv[0]);
|
progname = basename(argv[0]);
|
||||||
@ -185,42 +185,30 @@ Index: madwifi-trunk-r3314/tools/do_multi.c
|
|||||||
if(strcmp(progname, "athstats") == 0)
|
if(strcmp(progname, "athstats") == 0)
|
||||||
Index: madwifi-trunk-r3314/tools/Makefile
|
Index: madwifi-trunk-r3314/tools/Makefile
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/tools/Makefile 2008-03-07 01:45:09.450376072 +0100
|
--- madwifi-trunk-r3314.orig/tools/Makefile 2008-05-19 14:54:31.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/tools/Makefile 2008-03-07 01:47:43.217506273 +0100
|
+++ madwifi-trunk-r3314/tools/Makefile 2008-05-19 14:55:14.000000000 +0200
|
||||||
@@ -46,9 +46,10 @@
|
@@ -48,6 +48,8 @@
|
||||||
HAL= $(TOP)/hal
|
|
||||||
endif
|
|
||||||
|
|
||||||
+DEBUG=-DAR_DEBUG
|
all: compile
|
||||||
|
|
||||||
|
+DEBUG = -DAR_DEBUG
|
||||||
|
+
|
||||||
ALLPROGS= athstats 80211stats athkey athchans athctrl \
|
ALLPROGS= athstats 80211stats athkey athchans athctrl \
|
||||||
- athdebug 80211debug wlanconfig ath_info
|
athdebug 80211debug wlanconfig ath_info
|
||||||
+ $(if $(DEBUG),80211debug athdebug) wlanconfig ath_info
|
|
||||||
|
|
||||||
OBJS= $(patsubst %,%.o,$(ALLPROGS) do_multi)
|
@@ -55,7 +57,7 @@
|
||||||
ALL= ${OBJS} madwifi_multi
|
|
||||||
@@ -57,7 +58,7 @@
|
|
||||||
|
|
||||||
INCS= -I. -I$(HAL) -I$(TOP) -I$(ATH_HAL)
|
INCS= -I. -I../ath -I$(HAL) -I$(TOP) -I$(ATH_HAL)
|
||||||
CFLAGS= -g -O2 -Wall
|
CFLAGS= -g -O2 -Wall
|
||||||
-ALL_CFLAGS= $(CFLAGS) $(INCS)
|
-ALL_CFLAGS= $(CFLAGS) $(INCS)
|
||||||
+ALL_CFLAGS= $(CFLAGS) $(INCS) $(DEBUG)
|
+ALL_CFLAGS= $(CFLAGS) $(INCS) $(DEBUG)
|
||||||
LDFLAGS=
|
LDFLAGS=
|
||||||
|
|
||||||
all: $(ALL)
|
|
||||||
@@ -84,7 +85,7 @@
|
|
||||||
${CC} -c -o do_multi.o -DDOMULTI=1 ${ALL_CFLAGS} do_multi.c
|
|
||||||
madwifi_multi: $(OBJS)
|
|
||||||
${CC} -o madwifi_multi ${LDFLAGS} ${OBJS}
|
|
||||||
- for i in athstats 80211stats athkey athchans athctrl athdebug wlanconfig 80211debug; do \
|
|
||||||
+ for i in $(ALLPROGS); do \
|
|
||||||
ln -s -f madwifi_multi $$i; \
|
|
||||||
done
|
|
||||||
|
|
||||||
Index: madwifi-trunk-r3314/net80211/ieee80211_linux.h
|
Index: madwifi-trunk-r3314/net80211/ieee80211_linux.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/net80211/ieee80211_linux.h 2008-03-07 01:45:09.458376527 +0100
|
--- madwifi-trunk-r3314.orig/net80211/ieee80211_linux.h 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/net80211/ieee80211_linux.h 2008-03-07 01:47:43.217506273 +0100
|
+++ madwifi-trunk-r3314/net80211/ieee80211_linux.h 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -29,8 +29,6 @@
|
@@ -29,8 +29,6 @@
|
||||||
#ifndef _NET80211_IEEE80211_LINUX_H_
|
#ifndef _NET80211_IEEE80211_LINUX_H_
|
||||||
#define _NET80211_IEEE80211_LINUX_H_
|
#define _NET80211_IEEE80211_LINUX_H_
|
||||||
@ -232,8 +220,8 @@ Index: madwifi-trunk-r3314/net80211/ieee80211_linux.h
|
|||||||
#include <linux/wireless.h>
|
#include <linux/wireless.h>
|
||||||
Index: madwifi-trunk-r3314/Makefile.inc
|
Index: madwifi-trunk-r3314/Makefile.inc
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/Makefile.inc 2008-03-07 01:45:09.482377896 +0100
|
--- madwifi-trunk-r3314.orig/Makefile.inc 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/Makefile.inc 2008-03-07 01:47:43.217506273 +0100
|
+++ madwifi-trunk-r3314/Makefile.inc 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -148,7 +148,8 @@
|
@@ -148,7 +148,8 @@
|
||||||
TOOLS= $(TOP)/tools
|
TOOLS= $(TOP)/tools
|
||||||
|
|
||||||
@ -246,8 +234,8 @@ Index: madwifi-trunk-r3314/Makefile.inc
|
|||||||
# TARGET defines the target platform architecture. It must match one of
|
# TARGET defines the target platform architecture. It must match one of
|
||||||
Index: madwifi-trunk-r3314/ath/if_ath_radar.c
|
Index: madwifi-trunk-r3314/ath/if_ath_radar.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath/if_ath_radar.c 2008-03-07 01:45:09.386372426 +0100
|
--- madwifi-trunk-r3314.orig/ath/if_ath_radar.c 2008-05-19 14:54:42.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath/if_ath_radar.c 2008-03-07 01:47:43.217506273 +0100
|
+++ madwifi-trunk-r3314/ath/if_ath_radar.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -19,8 +19,6 @@
|
@@ -19,8 +19,6 @@
|
||||||
* $Id: if_ath_radar.c 2464 2007-06-15 22:51:56Z mtaylor $
|
* $Id: if_ath_radar.c 2464 2007-06-15 22:51:56Z mtaylor $
|
||||||
*/
|
*/
|
||||||
@ -268,8 +256,8 @@ Index: madwifi-trunk-r3314/ath/if_ath_radar.c
|
|||||||
|
|
||||||
Index: madwifi-trunk-r3314/ath/if_ath_hal.h
|
Index: madwifi-trunk-r3314/ath/if_ath_hal.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath/if_ath_hal.h 2008-03-07 01:45:09.394372879 +0100
|
--- madwifi-trunk-r3314.orig/ath/if_ath_hal.h 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath/if_ath_hal.h 2008-03-07 01:47:43.221504502 +0100
|
+++ madwifi-trunk-r3314/ath/if_ath_hal.h 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -1081,6 +1081,7 @@
|
@@ -1081,6 +1081,7 @@
|
||||||
|
|
||||||
tail -f /var/log/messages | sed -f hal_unmangle.sed
|
tail -f /var/log/messages | sed -f hal_unmangle.sed
|
||||||
@ -289,8 +277,8 @@ Index: madwifi-trunk-r3314/ath/if_ath_hal.h
|
|||||||
#endif /* #ifndef _IF_ATH_HAL_H_ */
|
#endif /* #ifndef _IF_ATH_HAL_H_ */
|
||||||
Index: madwifi-trunk-r3314/net80211/ieee80211_var.h
|
Index: madwifi-trunk-r3314/net80211/ieee80211_var.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/net80211/ieee80211_var.h 2008-03-07 01:45:09.466376986 +0100
|
--- madwifi-trunk-r3314.orig/net80211/ieee80211_var.h 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/net80211/ieee80211_var.h 2008-03-07 01:47:43.221504502 +0100
|
+++ madwifi-trunk-r3314/net80211/ieee80211_var.h 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -492,9 +492,10 @@
|
@@ -492,9 +492,10 @@
|
||||||
/* inject a fake radar signal -- used while on a 802.11h DFS channels */
|
/* inject a fake radar signal -- used while on a 802.11h DFS channels */
|
||||||
unsigned int (*ic_test_radar)(struct ieee80211com *);
|
unsigned int (*ic_test_radar)(struct ieee80211com *);
|
||||||
@ -305,8 +293,8 @@ Index: madwifi-trunk-r3314/net80211/ieee80211_var.h
|
|||||||
unsigned int (*ic_get_dfs_cac_time)(struct ieee80211com *);
|
unsigned int (*ic_get_dfs_cac_time)(struct ieee80211com *);
|
||||||
Index: madwifi-trunk-r3314/net80211/ieee80211_wireless.c
|
Index: madwifi-trunk-r3314/net80211/ieee80211_wireless.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/net80211/ieee80211_wireless.c 2008-03-07 01:45:09.474377438 +0100
|
--- madwifi-trunk-r3314.orig/net80211/ieee80211_wireless.c 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/net80211/ieee80211_wireless.c 2008-03-07 01:47:43.225502730 +0100
|
+++ madwifi-trunk-r3314/net80211/ieee80211_wireless.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -1548,6 +1548,7 @@
|
@@ -1548,6 +1548,7 @@
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -347,8 +335,8 @@ Index: madwifi-trunk-r3314/net80211/ieee80211_wireless.c
|
|||||||
set_priv(IEEE80211_IOCTL_WDSADDMAC, ieee80211_ioctl_wdsmac),
|
set_priv(IEEE80211_IOCTL_WDSADDMAC, ieee80211_ioctl_wdsmac),
|
||||||
Index: madwifi-trunk-r3314/ath/if_ath_debug.h
|
Index: madwifi-trunk-r3314/ath/if_ath_debug.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/ath/if_ath_debug.h 2008-03-07 01:45:09.402373336 +0100
|
--- madwifi-trunk-r3314.orig/ath/if_ath_debug.h 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/ath/if_ath_debug.h 2008-03-07 01:47:43.225502730 +0100
|
+++ madwifi-trunk-r3314/ath/if_ath_debug.h 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -68,13 +68,6 @@
|
@@ -68,13 +68,6 @@
|
||||||
ath_keyprint((_sc), __func__, _ix, _hk, _mac); \
|
ath_keyprint((_sc), __func__, _ix, _hk, _mac); \
|
||||||
} while (0)
|
} while (0)
|
||||||
@ -381,8 +369,8 @@ Index: madwifi-trunk-r3314/ath/if_ath_debug.h
|
|||||||
#endif /* #ifndef _IF_ATH_DEBUG_H_ */
|
#endif /* #ifndef _IF_ATH_DEBUG_H_ */
|
||||||
Index: madwifi-trunk-r3314/net80211/ieee80211_node.c
|
Index: madwifi-trunk-r3314/net80211/ieee80211_node.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- madwifi-trunk-r3314.orig/net80211/ieee80211_node.c 2008-03-07 01:49:21.741746524 +0100
|
--- madwifi-trunk-r3314.orig/net80211/ieee80211_node.c 2008-05-19 14:53:01.000000000 +0200
|
||||||
+++ madwifi-trunk-r3314/net80211/ieee80211_node.c 2008-03-07 01:50:03.856146488 +0100
|
+++ madwifi-trunk-r3314/net80211/ieee80211_node.c 2008-05-19 14:54:47.000000000 +0200
|
||||||
@@ -920,6 +920,9 @@
|
@@ -920,6 +920,9 @@
|
||||||
ni->ni_rxkeyoff = 0;
|
ni->ni_rxkeyoff = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user