mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
2e61c4ac1f
We do not have to define package for each board, and consider variant's installing. It is easier to maintain ls-mc with only one package installing all two images as intermediate files. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
40 lines
950 B
Makefile
40 lines
950 B
Makefile
#
|
|
# Copyright 2017 NXP
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ls-mc
|
|
PKG_VERSION:=lsdk-1903
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/NXP/qoriq-mc-binary.git
|
|
PKG_SOURCE_VERSION:=bd64d1824681b009fd83b0a3699e45b117b72695
|
|
PKG_MIRROR_HASH:=17ecfd780b8d884b3843d2b8fbcaf29410fdacdc03ab3fe81ae7ade994d7fc0a
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/layerscape-mc
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
TITLE:=NXP MC firmware
|
|
DEPENDS:=@TARGET_layerscape
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(CP) $(PKG_BUILD_DIR)/ls1088a/mc_10.14.3_ls1088a.itb \
|
|
$(STAGING_DIR_IMAGE)/ls1088ardb-mc.itb
|
|
$(CP) $(PKG_BUILD_DIR)/ls2088a/mc_10.14.3_ls2088a.itb \
|
|
$(STAGING_DIR_IMAGE)/ls2088ardb-mc.itb
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,layerscape-mc))
|