| 1 | # |
| 2 | # Copyright (C) 2006-2011 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | include $(TOPDIR)/rules.mk |
| 8 | |
| 9 | ARCH:=mipsel |
| 10 | BOARD:=au1000 |
| 11 | BOARDNAME:=RMI/AMD AU1x00 |
| 12 | FEATURES:=squashfs jffs2 usb pci |
| 13 | SUBTARGETS=au1500 au1550 |
| 14 | MAINTAINER:=Florian Fainelli <florian@openwrt.org> |
| 15 | |
| 16 | LINUX_VERSION:=3.3.8 |
| 17 | |
| 18 | include $(INCLUDE_DIR)/target.mk |
| 19 | DEFAULT_PACKAGES += wpad-mini yamonenv |
| 20 | |
| 21 | define Target/Description |
| 22 | Build firmware for RMI/AMD Alchemy 1500,1550 boards |
| 23 | (e.g. 4G-Systems Mesh/Access Cube, DBAu1550 ...) |
| 24 | endef |
| 25 | |
| 26 | define Kernel/BuildImage |
| 27 | $(call Kernel/BuildImage/Default) |
| 28 | $(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec |
| 29 | $(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec |
| 30 | endef |
| 31 | |
| 32 | $(eval $(call BuildTarget)) |
| 33 | |