mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 22:16:14 +00:00
6918c637b7
With the switch to ZSTD for git clone packaging, hashes have changed so fixup remaining package hashes that were missed in the inital update. Fixes: b3c1c57 ("treewide: update PKG_MIRROR_HASH to zst") Signed-off-by: Robert Marko <robimarko@gmail.com>
44 lines
992 B
Makefile
44 lines
992 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=2.2
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/bcm63xx/atf.git
|
|
PKG_SOURCE_DATE:=2021-12-24
|
|
PKG_SOURCE_VERSION:=e6d46baf3fae79f693f90bf34f7284c3dfc64aef
|
|
PKG_MIRROR_HASH:=5646abc01152210a8181455151f01145001d61b3fb09619b1cee48008e36b0fa
|
|
|
|
PKG_MAINTAINER:=Rafał Miłecki <rafal@milecki.pl>
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
include $(INCLUDE_DIR)/trusted-firmware-a.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Trusted-Firmware-A/Default
|
|
PLAT:=bcm
|
|
DEFAULT:=y
|
|
endef
|
|
|
|
define Trusted-Firmware-A/bcm4908
|
|
BUILD_TARGET:=bcm4908
|
|
NAME:=BCM4908
|
|
BRCM_CHIP=4908
|
|
TFA_IMAGE:=bl31.bin
|
|
endef
|
|
|
|
TFA_TARGETS:= \
|
|
bcm4908
|
|
|
|
TFA_MAKE_FLAGS += \
|
|
BRCM_CHIP=$(BRCM_CHIP)
|
|
|
|
define Package/trusted-firmware-a/install
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/build/$(PLAT)/release/$(TFA_IMAGE) $(STAGING_DIR_IMAGE)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/Trusted-Firmware-A))
|