aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/uboot-zynq/Makefile
blob: ac4503af50da8e11137fbf66bb7d0cf195b9ee28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# Copyright (C) 2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_VERSION:=2018.07

PKG_HASH:=9f10df88bc91b35642e461217f73256bbaeeca9ae2db8db56197ba5e89e1f6d4

include $(INCLUDE_DIR)/kernel.mk
include $(INCLUDE_DIR)/u-boot.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/host-build.mk

define U-Boot/Default
  BUILD_TARGET:=zynq
  UBOOT_IMAGE:=spl/boot.bin u-boot.img
  UBOOT_CONFIG:=zynq_$(1)
endef

define U-Boot/zc702
  NAME:=Xilinx ZC702 Dev Board
endef

define U-Boot/zc706
  NAME:=Xilinx ZC706 Dev Board
endef

define U-Boot/zed
  NAME:=Avnet Digilent ZedBoard Dev Board
endef

define U-Boot/zybo
  NAME:=Digilent Zybo Dev Board
endef

UBOOT_TARGETS := \
	zc702 \
	zed \
	zybo

Build/Exports:=$(Host/Exports)

$(eval $(call BuildPackage/U-Boot))