2016-10-28 16:18:23 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Jiang Yutang <jiangyutang1978@gmail.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ppfe
|
2018-07-02 08:33:35 +00:00
|
|
|
PKG_VERSION:=lsdk-1806
|
2016-10-28 16:18:23 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2018-01-18 08:36:49 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/NXP/qoriq-engine-pfe-bin.git
|
2018-07-02 08:33:35 +00:00
|
|
|
PKG_SOURCE_VERSION:=50c825b9300c5e36548fb5dcbef538b650fc1913
|
|
|
|
PKG_MIRROR_HASH:=7627ce260ac4b320f3a7e8ad81db1c3ec2266332762dd1e4313480f7a678fd43
|
2017-01-19 08:18:57 +00:00
|
|
|
|
2016-10-28 16:18:23 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2017-10-26 07:33:00 +00:00
|
|
|
RSTRIP:=:
|
|
|
|
STRIP:=:
|
2016-10-28 16:18:23 +00:00
|
|
|
|
2017-10-26 07:33:00 +00:00
|
|
|
define Package/layerscape-ppfe
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
TITLE:=NXP Layerscape PPFE firmware
|
2018-07-02 08:33:35 +00:00
|
|
|
DEPENDS:=@TARGET_layerscape
|
2017-10-26 07:33:00 +00:00
|
|
|
CONFIG_FW:=ls1012a/u-boot/pfe_fw_sbl.itb
|
|
|
|
CONFIG_BIN1:=ls1012a/slow_path/ppfe_class_ls1012a.elf
|
|
|
|
CONFIG_BIN2:=ls1012a/slow_path/ppfe_tmu_ls1012a.elf
|
2018-01-18 08:36:49 +00:00
|
|
|
CONFIG_LIC:=NXP-Binary-EULA.txt
|
2016-10-28 16:18:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2017-10-26 07:33:00 +00:00
|
|
|
define Package/layerscape-ppfe/install
|
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(CONFIG_FW) \
|
|
|
|
$(STAGING_DIR_IMAGE)/pfe.itb
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/$(CONFIG_BIN1) \
|
|
|
|
$(PKG_BUILD_DIR)/$(CONFIG_BIN2) \
|
|
|
|
$(PKG_BUILD_DIR)/$(CONFIG_LIC) \
|
|
|
|
$(1)/lib/firmware/
|
2016-10-28 16:18:23 +00:00
|
|
|
endef
|
|
|
|
|
2017-10-26 07:33:00 +00:00
|
|
|
$(eval $(call BuildPackage,layerscape-ppfe))
|