Skip to content
Snippets Groups Projects
Commit 1903fda5 authored by florian's avatar florian
Browse files

Add initial support for AMD Alchemy 1500 boards (4G-Systems AccessCube)....

Add initial support for AMD Alchemy 1500 boards (4G-Systems AccessCube). Thanks to Etienne for the hardware ;)


git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3606 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 77f04f87
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,15 @@ 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_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
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.4,ar531x,2_4_AR531X))
$(eval $(call kernel_template,2.6,aruba,2_6_ARUBA))
$(eval $(call kernel_template,2.6,au1000,2_6_MTX-1))
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
This diff is collapsed.
......@@ -8,7 +8,6 @@ package-$(BR2_PACKAGE_KMOD_FUSE) += fuse
package-$(BR2_PACKAGE_KMOD_HOSTAP) += hostap
package-$(BR2_PACKAGE_KMOD_BCM43XX_STANDALONE) += bcm43xx-standalone
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_MINI_FO) += mini_fo
package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment