Add initial support for AMD Alchemy 1500 boards (4G-Systems AccessCube). Thanks to Etienne for the hardware ;)
SVN-Revision: 3606
This commit is contained in:
parent
6669ffcf51
commit
a86978e2e6
5 changed files with 1766 additions and 1 deletions
|
@ -60,6 +60,15 @@ config BR2_LINUX_2_6_X86
|
||||||
Build firmware images for x86 based boards
|
Build firmware images for x86 based boards
|
||||||
(e.g. Soekris net4521 and net4801, PC Engines WRAP...)
|
(e.g. Soekris net4521 and net4801, PC Engines WRAP...)
|
||||||
|
|
||||||
|
config BR2_LINUX_2_6_MTX-1
|
||||||
|
bool "mtx1 [2.6]"
|
||||||
|
select BR2_mipsel
|
||||||
|
select BR2_LINUX_2_6
|
||||||
|
select BR2_LINUX_PCMCIA_SUPPORT
|
||||||
|
help
|
||||||
|
Build firmware for AMD Alchemy 1500 boards
|
||||||
|
(e.g. 4G-Systems Mesh/Access Cube ...)
|
||||||
|
|
||||||
if CONFIG_DEVEL
|
if CONFIG_DEVEL
|
||||||
|
|
||||||
config BR2_LINUX_2_6_ARM
|
config BR2_LINUX_2_6_ARM
|
||||||
|
|
|
@ -92,3 +92,4 @@ $(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.6,x86,2_6_X86))
|
||||||
$(eval $(call kernel_template,2.4,ar531x,2_4_AR531X))
|
$(eval $(call kernel_template,2.4,ar531x,2_4_AR531X))
|
||||||
$(eval $(call kernel_template,2.6,aruba,2_6_ARUBA))
|
$(eval $(call kernel_template,2.6,aruba,2_6_ARUBA))
|
||||||
|
$(eval $(call kernel_template,2.6,au1000,2_6_MTX-1))
|
||||||
|
|
25
openwrt/target/linux/au1000-2.6/Makefile
Normal file
25
openwrt/target/linux/au1000-2.6/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
LINUX_VERSION:=2.6.16.2
|
||||||
|
LINUX_RELEASE:=1
|
||||||
|
LINUX_KERNEL_MD5SUM:=d4105a5ba1d9f82acee2c525c65ef969
|
||||||
|
|
||||||
|
include ../rules.mk
|
||||||
|
include ./config
|
||||||
|
|
||||||
|
include ../generic-$(KERNEL)/modules.mk
|
||||||
|
include ../kernel.mk
|
||||||
|
|
||||||
|
|
||||||
|
$(LINUX_DIR)/.patched: $(LINUX_DIR)/.unpacked
|
||||||
|
[ -d ../generic-$(KERNEL)/patches ] && $(PATCH) $(LINUX_DIR) ../generic-$(KERNEL)/patches $(MAKE_TRACE)
|
||||||
|
[ -d ./patches ] && $(PATCH) $(LINUX_DIR) ./patches $(MAKE_TRACE)
|
||||||
|
@$(CP) config $(LINUX_DIR)/.config
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(LINUX_BUILD_DIR)/bzImage: $(LINUX_DIR)/vmlinux
|
||||||
|
$(MAKE) -C $(LINUX_DIR) V=1 CROSS_COMPILE=$(TARGET_CROSS) ARCH=$(LINUX_KARCH) PATH=$(TARGET_PATH) bzImage $(MAKE_TRACE)
|
||||||
|
$(CP) $(LINUX_DIR)/vmlinux $@
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
compile: $(LINUX_DIR)/vmlinux
|
1731
openwrt/target/linux/au1000-2.6/config
Normal file
1731
openwrt/target/linux/au1000-2.6/config
Normal file
File diff suppressed because it is too large
Load diff
|
@ -8,7 +8,6 @@ package-$(BR2_PACKAGE_KMOD_FUSE) += fuse
|
||||||
package-$(BR2_PACKAGE_KMOD_HOSTAP) += hostap
|
package-$(BR2_PACKAGE_KMOD_HOSTAP) += hostap
|
||||||
package-$(BR2_PACKAGE_KMOD_BCM43XX_STANDALONE) += bcm43xx-standalone
|
package-$(BR2_PACKAGE_KMOD_BCM43XX_STANDALONE) += bcm43xx-standalone
|
||||||
package-$(BR2_PACKAGE_KMOD_IEEE80211_DSCAPE) += ieee80211-dscape
|
package-$(BR2_PACKAGE_KMOD_IEEE80211_DSCAPE) += ieee80211-dscape
|
||||||
package-$(BR2_PACKAGE_KMOD_MADWIFI) += madwifi
|
|
||||||
package-$(BR2_PACKAGE_KMOD_MADWIFI_OLD) += madwifi-old
|
package-$(BR2_PACKAGE_KMOD_MADWIFI_OLD) += madwifi-old
|
||||||
package-$(BR2_PACKAGE_KMOD_MINI_FO) += mini_fo
|
package-$(BR2_PACKAGE_KMOD_MINI_FO) += mini_fo
|
||||||
package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan
|
package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan
|
||||||
|
|
Loading…
Reference in a new issue