mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-21 20:46:14 +00:00
64bfb8b7d6
Fix image build fail by using the generic subtarget. Fixes: 6d7129ef ("zynq: add generic subtarget") Ref: 40e3f660 ("uboot-fritz4040: build with ipq40xx generic subtarget") Signed-off-by: Kuan-Yi Li <kyli@abysm.org> [ add commit description ] Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
65 lines
1.4 KiB
Makefile
65 lines
1.4 KiB
Makefile
#
|
|
# 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:=2019.07
|
|
|
|
PKG_HASH:=bff4fa77e8da17521c030ca4c5b947a056c1b1be4d3e6ee8637020b8d50251d0
|
|
|
|
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
|
|
BUILD_SUBTARGET:=generic
|
|
UBOOT_IMAGE:=spl/boot.bin u-boot.img
|
|
UBOOT_CONFIG:=zynq_$(1)
|
|
UENV:=default
|
|
HIDDEN:=1
|
|
endef
|
|
|
|
define U-Boot/zc702
|
|
NAME:=Xilinx ZC702 Dev Board
|
|
BUILD_DEVICES:=xlnx_zynq-zc702
|
|
endef
|
|
|
|
define U-Boot/zed
|
|
NAME:=Avnet Digilent ZedBoard Dev Board
|
|
BUILD_DEVICES:=avnet_zynq-zed
|
|
endef
|
|
|
|
define U-Boot/zybo
|
|
NAME:=Digilent Zybo Dev Board
|
|
BUILD_DEVICES:=digilent_zynq-zybo
|
|
endef
|
|
|
|
define U-Boot/zybo_z7
|
|
NAME:=Digilent Zybo Z7 board
|
|
BUILD_DEVICES:=digilent_zynq-zybo-z7
|
|
endef
|
|
|
|
UBOOT_TARGETS := \
|
|
zc702 \
|
|
zed \
|
|
zybo \
|
|
zybo_z7
|
|
|
|
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
|
|
$(CP) ./files/uEnv-$(UENV).txt $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)-uEnv.txt
|
|
endef
|
|
|
|
define Package/u-boot/install/default
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|