mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 01:11:14 +00:00
c117d7a37a
Since v2.12, TF-A automatically selects the no-warn-rwx-segments option if needed. So move this hack to the package Makefiles. Signed-off-by: Thomas Richard <thomas.richard@bootlin.com> Link: https://github.com/openwrt/openwrt/pull/17243 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
58 lines
1.2 KiB
Makefile
58 lines
1.2 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
|
|
|
|
TFA_MAKE_FLAGS+= \
|
|
$(if $(CONFIG_BINUTILS_VERSION_2_37)$(CONFIG_BINUTILS_VERSION_2_38),,LDFLAGS="-no-warn-rwx-segments")
|
|
|
|
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))
|