Vragor's arm support patch for Makefiles and Configure.
parent
37f920d4aa
commit
588def8e83
1
CHANGES
1
CHANGES
|
@ -42,6 +42,7 @@
|
|||
*
|
||||
* --------------------------------------------------------------------
|
||||
0.1.12
|
||||
- Added vragor's patch for arm updates to the Makefiles and Configure.
|
||||
- Added jsuhr's patch of the PLX9052 irq enable code from the orinoco
|
||||
driver. Note: PLX contributions are highly valued here because we rarely
|
||||
use these devices ourselves.
|
||||
|
|
|
@ -446,7 +446,7 @@ $ECHO ""
|
|||
# Make sure our target architecture is correct
|
||||
|
||||
WLAN_TARGET_ARCH=$BUILD_ARCH
|
||||
ask_str "Target Architecture? (i386, ppc, or alpha)" WLAN_TARGET_ARCH
|
||||
ask_str "Target Architecture? (i386, ppc, arm, or alpha)" WLAN_TARGET_ARCH
|
||||
|
||||
$ECHO ""
|
||||
|
||||
|
|
1
THANKS
1
THANKS
|
@ -55,6 +55,7 @@ Jouni Malinen <jkmaline@cc.hut.fi>
|
|||
Bob James<bob.james@rebel.com>
|
||||
Calvin Fang <cfang@otcwireless.com>
|
||||
Jim Suhr <jimrsuhr@earthlink.net>
|
||||
Vragor <vragor@home.com>
|
||||
|
||||
[Many, many more. If I've overlooked you and you want to be listed here,
|
||||
send me e-mail and I'll fix it. I _know_ a bunch of linux-wlan contributors
|
||||
|
|
|
@ -84,12 +84,17 @@ CFLAGS := $(CFLAGS) -mno-fp-regs -ffixed-8
|
|||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__WLAN_ALPHA__
|
||||
else
|
||||
ifeq ($(WLAN_TARGET_ARCH), arm)
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__arm__
|
||||
else
|
||||
# this will probably generate an error. New arch's need to be added explicitly
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
# Source and obj and target definitions
|
||||
SHSRC= ../shared/p80211types.c \
|
||||
|
|
|
@ -87,12 +87,17 @@ ifeq ($(WLAN_TARGET_ARCH), alpha)
|
|||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__WLAN_ALPHA__
|
||||
else
|
||||
# this will probably generate an error. New arch's need to be added explicitly
|
||||
ifeq ($(WLAN_TARGET_ARCH), arm)
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__arm__
|
||||
else
|
||||
this will probably generate an error. New arch's need to be added explicitly
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
nwepgen: nwepgen.o
|
||||
$(CC) -o nwepgen nwepgen.o
|
||||
|
|
|
@ -88,12 +88,17 @@ CFLAGS := $(CFLAGS) -mno-fp-regs -ffixed-8
|
|||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__WLAN_ALPHA__
|
||||
else
|
||||
ifeq ($(WLAN_TARGET_ARCH), arm)
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__arm__
|
||||
else
|
||||
# this will probably generate an error. New arch's need to be added explicitly
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
SRCS = ../shared/p80211types.c \
|
||||
../shared/p80211meta.c \
|
||||
|
|
|
@ -88,12 +88,17 @@ CFLAGS := $(CFLAGS) -mno-fp-regs -ffixed-8
|
|||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__WLAN_ALPHA__
|
||||
else
|
||||
ifeq ($(WLAN_TARGET_ARCH), arm)
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__arm__
|
||||
else
|
||||
# this will probably generate an error. New arch's need to be added explicitly
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
SRCS = wlanctl.c \
|
||||
|
|
|
@ -87,12 +87,17 @@ ifeq ($(WLAN_TARGET_ARCH), alpha)
|
|||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__WLAN_ALPHA__
|
||||
else
|
||||
ifeq ($(WLAN_TARGET_ARCH), arm)
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__ -D__arm__
|
||||
else
|
||||
# this will probably generate an error. New arch's need to be added explicitly
|
||||
CPPFLAGS= -I../include -I$(LINUX_SRC)/include \
|
||||
-D__LINUX_WLAN__
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
SRCS = wland.c \
|
||||
../shared/p80211types.c \
|
||||
|
|
Loading…
Reference in New Issue