Makefile 676 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Copyright (C) 2015 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. include $(INCLUDE_DIR)/host.mk
  9. ARCH:=arm
  10. BOARD:=zynq
  11. BOARDNAME:=Xilinx Zynq 7000 SoCs
  12. FEATURES:=fpu gpio rtc usb usbgadget targz
  13. CPU_TYPE:=cortex-a9
  14. CPU_SUBTYPE:=neon
  15. MAINTAINER:=Jason Wu <jason.wu.misc@gmail.com>
  16. # future support SUBTARGETS: for both zynq and zynqmp
  17. define Target/Description
  18. Build firmware image for Zynq 7000 SoC devices.
  19. endef
  20. KERNEL_PATCHVER:=4.4
  21. include $(INCLUDE_DIR)/target.mk
  22. KERNELNAME:=zImage dtbs
  23. DEFAULT_PACKAGES += uboot-envtools
  24. $(eval $(call BuildTarget))