mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
03123a3ae5
- detect die revision used in variants of the Allwinner H616 SoC (H313, T507) - support for H6 boards without PMIC Tested on Pine64+ and Orange PI Zero2 Signed-off-by: Sebastian Pflieger <sebastian@pflieger.email>
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.9
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_HASH:=76a66a1de0c01aeb83dfc7b72b51173fe62c6e51d6fca17cc562393117bed08b
|
|
|
|
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))
|