2016-02-12 08:29:24 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2018-08-11 20:01:56 +00:00
|
|
|
PKG_VERSION:=2018.07
|
2016-02-12 08:29:24 +00:00
|
|
|
|
2018-08-11 20:01:56 +00:00
|
|
|
PKG_HASH:=9f10df88bc91b35642e461217f73256bbaeeca9ae2db8db56197ba5e89e1f6d4
|
2016-02-12 08:29:24 +00:00
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
2016-02-12 08:29:24 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-05-23 07:32:25 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2016-02-12 08:29:24 +00:00
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
define U-Boot/Default
|
|
|
|
BUILD_TARGET:=zynq
|
2018-05-13 22:12:21 +00:00
|
|
|
UBOOT_IMAGE:=spl/boot.bin u-boot.img
|
2017-01-24 14:53:28 +00:00
|
|
|
UBOOT_CONFIG:=zynq_$(1)
|
2018-09-04 01:39:57 +00:00
|
|
|
HIDDEN:=1
|
2016-02-12 08:29:24 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
define U-Boot/zc702
|
|
|
|
NAME:=Xilinx ZC702 Dev Board
|
2018-09-04 01:39:57 +00:00
|
|
|
BUILD_DEVICES:=xlnx_zynq-zc702
|
2016-02-12 08:29:24 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
define U-Boot/zed
|
|
|
|
NAME:=Avnet Digilent ZedBoard Dev Board
|
2018-09-04 01:39:57 +00:00
|
|
|
BUILD_DEVICES:=avnet_zynq-zed
|
2016-04-26 11:44:26 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
define U-Boot/zybo
|
|
|
|
NAME:=Digilent Zybo Dev Board
|
2018-09-04 01:39:57 +00:00
|
|
|
BUILD_DEVICES:=digilent_zynq-zybo
|
2016-04-26 11:44:29 +00:00
|
|
|
endef
|
|
|
|
|
2018-08-24 03:40:25 +00:00
|
|
|
define U-Boot/zybo_z7
|
|
|
|
NAME:=Digilent Zybo Z7 board
|
2018-09-04 01:39:57 +00:00
|
|
|
BUILD_DEVICES:=digilent_zynq-zybo-z7
|
2018-08-24 03:40:25 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
UBOOT_TARGETS := \
|
2016-02-12 08:29:24 +00:00
|
|
|
zc702 \
|
2016-04-26 11:44:26 +00:00
|
|
|
zed \
|
2018-08-24 03:40:25 +00:00
|
|
|
zybo \
|
|
|
|
zybo_z7
|
2016-02-12 08:29:24 +00:00
|
|
|
|
2018-09-04 01:39:58 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/spl/boot.bin $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)-boot.bin
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/u-boot.img $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)-u-boot.img
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/u-boot/install/default
|
|
|
|
endef
|
|
|
|
|
2018-05-23 07:32:25 +00:00
|
|
|
Build/Exports:=$(Host/Exports)
|
|
|
|
|
2017-01-24 14:53:28 +00:00
|
|
|
$(eval $(call BuildPackage/U-Boot))
|