Makefile 618 B

123456789101112131415161718192021222324252627282930
  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. SUBTARGETS:=generic
  12. # future support SUBTARGETS: for both zynq and zynqmp
  13. define Target/Description
  14. Build firmware image for Zynq 7000 SoC devices.
  15. endef
  16. KERNEL_PATCHVER:=6.6
  17. include $(INCLUDE_DIR)/target.mk
  18. KERNELNAME:=Image dtbs
  19. DEFAULT_PACKAGES += uboot-envtools mkf2fs e2fsprogs \
  20. kmod-usb-storage kmod-fs-msdos
  21. $(eval $(call BuildTarget))