2021-02-10 21:52:34 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2016-02-12 16:29:24 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
2021-02-10 21:52:34 +08:00
|
|
|
|
2016-02-12 16:29:24 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
ARCH:=arm
|
|
|
|
BOARD:=zynq
|
|
|
|
BOARDNAME:=Xilinx Zynq 7000 SoCs
|
2018-09-04 09:40:02 +08:00
|
|
|
FEATURES:=fpu gpio rtc usb usbgadget boot-part rootfs-part squashfs
|
2016-02-12 16:29:24 +08:00
|
|
|
CPU_TYPE:=cortex-a9
|
|
|
|
CPU_SUBTYPE:=neon
|
|
|
|
|
|
|
|
# future support SUBTARGETS: for both zynq and zynqmp
|
|
|
|
|
|
|
|
define Target/Description
|
|
|
|
Build firmware image for Zynq 7000 SoC devices.
|
|
|
|
endef
|
|
|
|
|
2021-10-10 10:55:06 +08:00
|
|
|
KERNEL_PATCHVER:=5.10
|
2016-02-12 16:29:24 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
|
2018-05-14 02:05:38 +08:00
|
|
|
KERNELNAME:=Image dtbs
|
2016-02-12 16:29:24 +08:00
|
|
|
|
2019-04-01 11:33:08 +08:00
|
|
|
DEFAULT_PACKAGES += uboot-envtools mkf2fs e2fsprogs \
|
|
|
|
kmod-usb-storage kmod-fs-msdos
|
2016-02-12 16:29:24 +08:00
|
|
|
|
|
|
|
$(eval $(call BuildTarget))
|