You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
#
|
|
# 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
|
|
PKG_SOURCE_DATE:=2017-12-05
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/NXP/qoriq-engine-pfe-bin.git
|
|
PKG_SOURCE_VERSION:=848002fe4e0e3efb8d13a813e5c123bbc87aa95b
|
|
PKG_MIRROR_HASH:=b6867be2f5826e807db15256996e11303ca7bbe06ac18448cbf68827d9a59ae2
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
RSTRIP:=:
|
|
STRIP:=:
|
|
|
|
define Package/layerscape-ppfe
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
DEPENDS:=@TARGET_layerscape
|
|
TITLE:=NXP Layerscape PPFE firmware
|
|
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
|
|
CONFIG_LIC:=NXP-Binary-EULA.txt
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
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/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,layerscape-ppfe))
|
|
|