2
0

Makefile 811 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Copyright (C) 2006-2009 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:=jffs2 usb pci
  12. SUBTARGETS=au1500 au1550
  13. LINUX_VERSION:=2.6.30.8
  14. include $(INCLUDE_DIR)/target.mk
  15. DEFAULT_PACKAGES += hostapd-mini yamonenv
  16. define Target/Description
  17. Build firmware for RMI/AMD Alchemy 1500,1550 boards
  18. (e.g. 4G-Systems Mesh/Access Cube, DBAu1550 ...)
  19. endef
  20. define Kernel/BuildImage
  21. $(call Kernel/BuildImage/Default)
  22. $(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec
  23. $(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec
  24. endef
  25. $(eval $(call BuildTarget))