1903233f2b
This marks all packages which depend on a target with @TARGET nonshared. If they are not marked nonshared they would be build by the SDK build and if this happens with a different SDK, then the SDK from the target the package depends on, the package would not be added to the index. This should fix the image builder for some of these packages. This should fix the image builder at least for bcm27xx/bcm2710 and bcm4908/generic. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
#
|
|
# 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_VERSION:=LSDK-20.04
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/NXP/qoriq-engine-pfe-bin.git
|
|
PKG_SOURCE_VERSION:=d3a8ef0760c54ddc243039c86389497e37be90ab
|
|
PKG_MIRROR_HASH:=64be93b8249d298e7b5fd0846787835f0659b6ab6c55b40b809366c79e272eb8
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
RSTRIP:=:
|
|
STRIP:=:
|
|
|
|
define Package/layerscape-ppfe
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
TITLE:=NXP Layerscape PPFE firmware
|
|
DEPENDS:=@TARGET_layerscape
|
|
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))
|