mirror of
https://github.com/openwrt/openwrt.git
synced 2025-04-24 13:05:46 +00:00
Currently, ls-dpl package is being included in the individual profile DEVICE_PACKAGES but using the feature that allows skipping their inclusion in the end image package list if prefixed with a tilde(~) which was added in: 377b66990b97 ("build: introduce support to declare skip package") But it not added to Image Builder so currently trying to build layerscape device images in Image Builder will fail with: ERROR: '~ls-dpl' is not a valid world dependency, format is name(@tag)([<>~=]version) So, instead of having to rely on support for skipping package installation and declaring the ls-dpl package in DEVICE_PACKAGES lets select it when layerscape/armv8_64b target is selected. Fixes: #18412 Link: https://github.com/openwrt/openwrt/pull/18462 Signed-off-by: Robert Marko <robimarko@gmail.com>
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
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-dpl
|
|
PKG_VERSION:=10.39.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/nxp-qoriq/mc-utils
|
|
PKG_SOURCE_VERSION:=mc_release_10.39.0
|
|
PKG_MIRROR_HASH:=48e0ad66f536689bf8cfd115420422a1c746cd609816bd9b07ef8ef358a85cf4
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
define Package/layerscape-dpl
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
TITLE:=NXP DPL firmware
|
|
DEPENDS:=@TARGET_layerscape
|
|
DEFAULT:=y if TARGET_layerscape_armv8_64b
|
|
HIDDEN:=1
|
|
endef
|
|
|
|
MAKE_PATH:=config
|
|
MAKE_VARS+= \
|
|
PATH=$(LINUX_DIR)/scripts/dtc:$(PATH)
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(CP) $(PKG_BUILD_DIR)/config/ls1088a/LS1088A-RDB/dpl-eth.0x1D_0x0D.dtb \
|
|
$(STAGING_DIR_IMAGE)/fsl_ls1088a-rdb-dpl.dtb
|
|
$(CP) $(PKG_BUILD_DIR)/config/ls1088a/LS1088A-RDB/dpc.0x1D-0x0D.dtb \
|
|
$(STAGING_DIR_IMAGE)/fsl_ls1088a-rdb-dpc.dtb
|
|
$(CP) $(PKG_BUILD_DIR)/config/ls2088a/LS2088A-RDB/dpl-eth.0x2A_0x41.dtb \
|
|
$(STAGING_DIR_IMAGE)/fsl_ls2088a-rdb-dpl.dtb
|
|
$(CP) $(PKG_BUILD_DIR)/config/ls2088a/LS2088A-RDB/dpc.0x2A_0x41.dtb \
|
|
$(STAGING_DIR_IMAGE)/fsl_ls2088a-rdb-dpc.dtb
|
|
$(CP) $(PKG_BUILD_DIR)/config/lx2160a/LX2160A-RDB/dpl-eth.19.dtb \
|
|
$(STAGING_DIR_IMAGE)/fsl_lx2160a-rdb-dpl.dtb
|
|
$(CP) $(PKG_BUILD_DIR)/config/lx2160a/LX2160A-RDB/dpc-usxgmii.dtb \
|
|
$(STAGING_DIR_IMAGE)/fsl_lx2160a-rdb-dpc.dtb
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,layerscape-dpl))
|