diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2022-12-26 08:50:23 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-12-26 08:53:58 +0100 |
commit | 74fbaeef4043818fa96b0367c732e9fef0c265b3 (patch) | |
tree | 2be5dbc6a42645c9c6184c465831a063d2c08ee6 /package/arm-trusted-firmware/Makefile | |
parent | 192281ae3038a57d98c8e0a06bcab0bd8efa2fc7 (diff) |
add arm-trusted-firmware package
Diffstat (limited to 'package/arm-trusted-firmware/Makefile')
-rw-r--r-- | package/arm-trusted-firmware/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/arm-trusted-firmware/Makefile b/package/arm-trusted-firmware/Makefile new file mode 100644 index 000000000..10bb72a25 --- /dev/null +++ b/package/arm-trusted-firmware/Makefile @@ -0,0 +1,26 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= arm-trusted-firmware +PKG_VERSION:= 6952ce49c29be021eb07159c2f472e9e23633135 +PKG_GIT:= hash +PKG_RELEASE:= 1 +PKG_DESCR:= ARM Trusted Firmware +PKG_SECTION:= base/boot +PKG_SITES:= https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,ARM_TRUSTED_FIRMWARE,arm-trusted-firmware,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) + +TARGET_LDFLAGS:= +XAKE_FLAGS+= V=1 +ALL_TARGET:= bl31 +CONFIG_STYLE:= manual +INSTALL_STYLE:= manual + +arm-trusted-firmware-install: + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |