2017-10-16 10:23:45 +08:00
|
|
|
#
|
|
|
|
# Copyright 2017 NXP
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2017-12-02 05:32:26 +08:00
|
|
|
PKG_NAME:=ls-mc
|
2024-09-09 18:35:40 +08:00
|
|
|
PKG_VERSION:=10.39.0
|
2024-03-01 17:47:36 +08:00
|
|
|
PKG_RELEASE:=1
|
2017-10-16 10:23:45 +08:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2018-01-18 14:55:19 +08:00
|
|
|
PKG_SOURCE_URL:=https://github.com/NXP/qoriq-mc-binary.git
|
2024-09-09 18:35:40 +08:00
|
|
|
PKG_SOURCE_VERSION:=mc_release_10.39.0
|
|
|
|
PKG_MIRROR_HASH:=0676072ec3fcb7ad3ec101ea279f5e7b41b292b44426563aba9062668f9855ab
|
2017-10-16 10:23:45 +08:00
|
|
|
|
2021-05-03 06:35:38 +08:00
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
|
2017-10-16 10:23:45 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2020-03-14 14:25:33 +08:00
|
|
|
define Package/layerscape-mc
|
2017-10-16 10:23:45 +08:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2020-03-14 14:25:33 +08:00
|
|
|
TITLE:=NXP MC firmware
|
2018-07-02 14:58:30 +08:00
|
|
|
DEPENDS:=@TARGET_layerscape
|
2017-10-16 10:23:45 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2020-03-14 14:25:33 +08:00
|
|
|
define Build/InstallDev
|
2017-10-16 10:23:45 +08:00
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
2024-03-01 17:47:36 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/ls1088a/mc_ls1088a_$(PKG_VERSION).itb \
|
2020-07-20 21:34:04 +08:00
|
|
|
$(STAGING_DIR_IMAGE)/fsl_ls1088a-rdb-mc.itb
|
2024-03-01 17:47:36 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/ls2088a/mc_ls2088a_$(PKG_VERSION).itb \
|
2020-07-20 21:34:04 +08:00
|
|
|
$(STAGING_DIR_IMAGE)/fsl_ls2088a-rdb-mc.itb
|
2024-03-01 17:47:36 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/lx216xa/mc_lx2160a_$(PKG_VERSION).itb \
|
layerscape: add LX2160ARDB (Rev2.0 silicon) board support
The QorIQ LX2160A reference design board provides a comprehensive platform
that enables design and evaluation of the LX2160A processor.
- Enables network intelligence with the next generation Datapath (DPPA2)
which provides differentiated offload and a rich set of IO, including
10GE, 25GE, 40GE, and PCIe Gen4
- Delivers unprecedented efficiency and new virtualized networks
- Supports designs in 5G packet processing, network function
virtualization, storage controller, white box switching, network
interface cards, and mobile edge computing
- Supports all three LX2 family members (16-core LX2160A; 12-core LX2120A;
and 8-core LX2080A)
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
[use AUTORELEASE, add dtb to firmware part]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-07-30 13:12:43 +08:00
|
|
|
$(STAGING_DIR_IMAGE)/fsl_lx2160a-rdb-mc.itb
|
2017-10-16 10:23:45 +08:00
|
|
|
endef
|
|
|
|
|
2020-03-14 14:25:33 +08:00
|
|
|
$(eval $(call BuildPackage,layerscape-mc))
|