dda2229c52
The git hash was changed for multiple layerscape packages without changing the version number. The LEDE build system will not download the packages again if the old version is already there and so some people and the build bots are using wrong version of some packages. Use PKG_SOURCE_DATE instead of PKG_VERSION to generate packages with the date and the first charterers of the git hash. This will change the file name and make the build system download them again, also if in future the git hash is changed the file name will change and trigger a new download. This should fix a problem spotted by build bot. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
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_SOURCE_DATE:=2017-02-13
|
|
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:=1a4611d528f67f3acfa88aefdec9a9a67d96a3139ac5fe1089f599272e6c4a52
|
|
|
|
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))) \
|
|
)
|