X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/8d1aeadcd7aed346643691509ceaaef428208691..bcad4ad4a936f47d298a3e523b8ca34977152231:/target/linux/au1000-2.6/Makefile

diff --git a/target/linux/au1000-2.6/Makefile b/target/linux/au1000-2.6/Makefile
index 67a97acc8..45b718135 100644
--- a/target/linux/au1000-2.6/Makefile
+++ b/target/linux/au1000-2.6/Makefile
@@ -1,25 +1,50 @@
+# 
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
 include $(TOPDIR)/rules.mk
 
-LINUX_VERSION:=2.6.16.3
+ARCH:=mipsel
+BOARD:=au1000
+BOARDNAME:=AMD Alchemy AU1x00
+FEATURES:=jffs2
+
+define Target/Description
+	Build firmware for AMD Alchemy 1500 boards
+	(e.g. 4G-Systems Mesh/Access Cube ...)
+endef
+
+LINUX_VERSION:=2.6.17
 LINUX_RELEASE:=1
-LINUX_KERNEL_MD5SUM:=e8e3f458c72671d8ac041c10b49e2b3f
+LINUX_KERNEL_MD5SUM:=37ddefe96625502161f075b9d907f21e
+
+include $(INCLUDE_DIR)/kernel-build.mk
 
-include ../rules.mk
-include ./config
+define Kernel/BuildImage
+	$(call Kernel/BuildImage/Default)
+	$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec
+	$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec
+endef
 
-include ../generic-$(KERNEL)/modules.mk
-include ../kernel.mk
+define Profile/Atheros
+  NAME:=Atheros WiFi (default)
+  PACKAGES:=kmod-madwifi
+endef
+$(eval $(call Profile,Atheros))
 
+define Profile/Intel
+  NAME:=Intel IPW2200 WiFi
+  PACKAGES:=kmod-net-ipw2200
+endef
+$(eval $(call Profile,Intel))
 
-$(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 $@
+define Profile/Broadcom
+  NAME:=Broadcom BCM43xx WiFi
+  PACKAGES:=kmod-net-bcm43xx
+endef
+$(eval $(call Profile,Broadcom))
 
-$(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 $@
+$(eval $(call BuildKernel))
 
-compile: $(LINUX_DIR)/vmlinux