Makefile 860 B

1234567891011121314151617181920212223242526272829303132
  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. ARCH:=mipsel
  9. BOARD:=au1000
  10. BOARDNAME:=RMI/AMD AU1x00
  11. FEATURES:=squashfs usb pci
  12. SUBTARGETS=au1500 au1550
  13. MAINTAINER:=Florian Fainelli <florian@openwrt.org>
  14. KERNEL_PATCHVER:=3.18
  15. include $(INCLUDE_DIR)/target.mk
  16. DEFAULT_PACKAGES += wpad-mini yamonenv
  17. define Target/Description
  18. Build firmware for RMI/AMD Alchemy 1500,1550 boards
  19. (e.g. 4G-Systems Mesh/Access Cube, DBAu1550 ...)
  20. endef
  21. define Kernel/BuildImage
  22. $(call Kernel/BuildImage/Default)
  23. $(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec
  24. $(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec
  25. endef
  26. $(eval $(call BuildTarget))