Makefile 598 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2015 OpenWrt.org
  4. include $(TOPDIR)/rules.mk
  5. ARCH:=arm
  6. BOARD:=zynq
  7. BOARDNAME:=Xilinx Zynq 7000 SoCs
  8. FEATURES:=fpu gpio rtc usb usbgadget boot-part rootfs-part squashfs
  9. CPU_TYPE:=cortex-a9
  10. CPU_SUBTYPE:=neon
  11. # future support SUBTARGETS: for both zynq and zynqmp
  12. define Target/Description
  13. Build firmware image for Zynq 7000 SoC devices.
  14. endef
  15. KERNEL_PATCHVER:=5.4
  16. include $(INCLUDE_DIR)/target.mk
  17. KERNELNAME:=Image dtbs
  18. DEFAULT_PACKAGES += uboot-envtools mkf2fs e2fsprogs \
  19. kmod-usb-storage kmod-fs-msdos
  20. $(eval $(call BuildTarget))