1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

first ar531x support for 2.4, thx Mile Albon, some addons from me for mips big endian toolchain

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2781 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
wbx
2005-12-25 20:04:16 +00:00
parent 5ae9fadf35
commit 1a73c7e2c9
13 changed files with 8817 additions and 10 deletions

View File

@@ -48,6 +48,14 @@ config BR2_LINUX_2_6_X86
Build firmware images for x86 based boards
(e.g. Soekris net4521 and net4801, PC Engines WRAP...)
config BR2_LINUX_2_4_AR531X
bool "Support for Atheros ar531x based APs"
default n
depends BR2_mipseb
help
Build firmware images for Atheros ar531x based boards
(e.g. Netgear WGT624, Linksys WRT55AG)
endchoice

View File

@@ -88,3 +88,4 @@ $(eval $(call kernel_template,2.4,ar7,2_4_AR7))
$(eval $(call kernel_template,2.4,x86,2_4_X86))
$(eval $(call kernel_template,2.6,brcm,2_6_BRCM))
$(eval $(call kernel_template,2.6,x86,2_6_X86))
$(eval $(call kernel_template,2.4,ar531x,2_4_AR531X))

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,8 @@
config BR2_PACKAGE_KMOD_DIAG
prompt "kmod-diag......................... Driver for router LEDs and Buttons"
tristate
default y
default y if BR2_LINUX_2_4_BRCM
default m if CONFIG_DEVEL
default n
help
Driver for router LEDs and Buttons

View File

@@ -3,6 +3,7 @@ config BR2_PACKAGE_KMOD_MADWIFI
tristate
default y if BR2_LINUX_2_6_BRCM
default m if CONFIG_DEVEL
default n
help
Driver for Atheros 802.11a/b/g MiniPCI cards

View File

@@ -3,6 +3,7 @@ config BR2_PACKAGE_KMOD_SWITCH
tristate
default y if BR2_LINUX_2_6_BRCM || BR2_LINUX_2_4_BRCM
default m if CONFIG_DEVEL
default n
help
Kernel driver for ROBO and ADMTEK switches.

View File

@@ -1,5 +1,6 @@
LINUX_KARCH:=$(shell echo $(ARCH) | sed -e 's/i[3-9]86/i386/' \
-e 's/mipsel/mips/' \
-e 's/mipseb/mips/' \
-e 's/powerpc/ppc/' \
-e 's/sh[234]/sh/' \
)