mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-14 09:37:04 +00:00
4cc6e7192f
Runtime tested on NanoPi R1S H5 and Orange Pi Zero3. Changelog: https://trustedfirmware-a.readthedocs.io/en/v2.10/change-log.html Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2017 Hauke Mehrtens
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=2.10
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_HASH:=88215a62291b9ba87da8e50b077741103cdc08fb6c9e1ebd34dfaace746d3201
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=license.md
|
|
|
|
PKG_MAINTAINER:=Hauke Mehrtens <hauke@hauke-m.de>
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
include $(INCLUDE_DIR)/trusted-firmware-a.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Trusted-Firmware-A/Default
|
|
BUILD_TARGET:=sunxi
|
|
BUILD_SUBTARGET:=cortexa53
|
|
endef
|
|
|
|
define Trusted-Firmware-A/sunxi-a64
|
|
NAME:=Allwinner A64
|
|
PLAT:=sun50i_a64
|
|
endef
|
|
|
|
define Trusted-Firmware-A/sunxi-h6
|
|
NAME:=Allwinner H6
|
|
PLAT:=sun50i_h6
|
|
endef
|
|
|
|
define Trusted-Firmware-A/sunxi-h616
|
|
NAME:=Allwinner H616
|
|
PLAT:=sun50i_h616
|
|
endef
|
|
|
|
TFA_TARGETS:= \
|
|
sunxi-a64 \
|
|
sunxi-h6 \
|
|
sunxi-h616
|
|
|
|
define Package/trusted-firmware-a/install
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/build/$(PLAT)/release/bl31.bin $(STAGING_DIR_IMAGE)/bl31_$(BUILD_VARIANT).bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/Trusted-Firmware-A))
|