2e2203ff72
NXP Layerscape LSDK had set up its own open source web site and github for release. https://lsdk.github.io https://github.com/qoriq-open-source This patch is to update rcw/fman_ucode/u-boot packages with LSDK git trees. Also add some patches of packages to support LEDE. Since ARMv8 32-bit u-boot images are same with ARMv8 64-bit images but 64-bit toolchain couldn't be used for 32-bit targets, we still use a private tree for ARMv8 32-bit u-boot images. This is in plan to move this private tree to NXP Layerscape github. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
89 lines
2.1 KiB
Makefile
89 lines
2.1 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
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
PKG_NAME:=fman-ucode
|
|
PKG_VERSION:=2017.09
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/qoriq-open-source/fm-ucode.git
|
|
PKG_SOURCE_VERSION:=c275e91392e2adab1ed22f3867b8269ca3c54014
|
|
PKG_MIRROR_HASH:=80d8d2454063b7f730ef49d7a44be8f8870711ee5109c53a0881b62026037a37
|
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define fman/Default
|
|
TITLE:=
|
|
CONFIG:=
|
|
endef
|
|
|
|
define fman/ls1043ardb
|
|
TITLE=FMAN UCODE $(PKG_NAME)-$(PKG_VERSION) for NXP ls1043ardb 64b/32b Dev Board
|
|
CONFIG=fsl_fman_ucode_ls1043_r1.1_106_4_18.bin
|
|
endef
|
|
|
|
define fman/ls1046ardb
|
|
TITLE=FMAN UCODE $(PKG_NAME)-$(PKG_VERSION) for NXP ls1046ardb 64b/32b Dev Board
|
|
CONFIG=fsl_fman_ucode_ls1046_r1.0_106_4_18.bin
|
|
endef
|
|
|
|
FMANS := \
|
|
ls1043ardb \
|
|
ls1046ardb
|
|
|
|
define Package/fman/template
|
|
define Package/fman-layerscape-$(1)
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
DEPENDS:=@TARGET_layerscape
|
|
TITLE:=$(2)
|
|
URL:=https://github.com/qoriq-open-source/fm-ucode.git
|
|
VARIANT:=$(1)
|
|
MAINTAINER:=Jiang Yutang <jiangyutang1978@gmail.com>
|
|
endef
|
|
endef
|
|
|
|
define BuildFMANPackage
|
|
$(eval $(fman/Default))
|
|
$(eval $(fman/$(1)))
|
|
$(call Package/fman/template,$(1),$(TITLE))
|
|
endef
|
|
|
|
ifdef BUILD_VARIANT
|
|
$(eval $(call fman/$(BUILD_VARIANT)))
|
|
FMAN_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
|
|
endif
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/fman/install/default
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(CP) $(PKG_BUILD_DIR)/$(FMAN_CONFIG) $(STAGING_DIR_IMAGE)/$(1)-fman.bin
|
|
endef
|
|
|
|
define Package/fman/install/template
|
|
define Package/fman-layerscape-$(1)/install
|
|
$(call Package/fman/install/default,$(2))
|
|
endef
|
|
endef
|
|
|
|
$(foreach f,$(FMANS), \
|
|
$(eval $(call Package/fman/install/template,$(f),$(f))) \
|
|
)
|
|
|
|
$(foreach f,$(FMANS), \
|
|
$(eval $(call BuildFMANPackage,$(f))) \
|
|
$(eval $(call BuildPackage,fman-layerscape-$(f))) \
|
|
)
|