2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-04-10 15:31:26 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-11-11 23:11:02 +00:00
|
|
|
ARCH:=mipsel
|
|
|
|
BOARD:=au1000
|
|
|
|
BOARDNAME:=AMD Alchemy AU1x00
|
2006-11-19 20:30:11 +00:00
|
|
|
FEATURES:=jffs2
|
2006-11-11 23:11:02 +00:00
|
|
|
|
|
|
|
define Target/Description
|
|
|
|
Build firmware for AMD Alchemy 1500 boards
|
|
|
|
(e.g. 4G-Systems Mesh/Access Cube ...)
|
|
|
|
endef
|
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel-build.mk
|
2006-04-10 15:31:26 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/BuildImage
|
|
|
|
$(call Kernel/BuildImage/Default)
|
2006-05-30 19:38:38 +00:00
|
|
|
$(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
|
2006-10-19 06:20:55 +00:00
|
|
|
endef
|
|
|
|
|
2006-12-11 17:55:39 +00:00
|
|
|
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))
|
|
|
|
|
|
|
|
define Profile/Broadcom
|
|
|
|
NAME:=Broadcom BCM43xx WiFi
|
|
|
|
PACKAGES:=kmod-net-bcm43xx
|
|
|
|
endef
|
|
|
|
$(eval $(call Profile,Broadcom))
|
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
$(eval $(call BuildKernel))
|
2006-04-10 15:31:26 +00:00
|
|
|
|