diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2017-12-21 09:32:51 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2017-12-21 10:02:16 +0100 |
commit | dda2229c52c78d177a417e261d3dd912f65101fe (patch) | |
tree | b5ee53da2b4bb939887b40af1f9d3df2cfeabdb2 /package/firmware/layerscape/ppfe-firmware/Makefile | |
parent | e90dc8d27221bf00daa7c49a986cc0bac6f2e070 (diff) | |
download | upstream-dda2229c52c78d177a417e261d3dd912f65101fe.tar.gz upstream-dda2229c52c78d177a417e261d3dd912f65101fe.tar.bz2 upstream-dda2229c52c78d177a417e261d3dd912f65101fe.zip |
layerscape: fix package download
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>
Diffstat (limited to 'package/firmware/layerscape/ppfe-firmware/Makefile')
-rw-r--r-- | package/firmware/layerscape/ppfe-firmware/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/firmware/layerscape/ppfe-firmware/Makefile b/package/firmware/layerscape/ppfe-firmware/Makefile index 431cf26235..419201e87e 100644 --- a/package/firmware/layerscape/ppfe-firmware/Makefile +++ b/package/firmware/layerscape/ppfe-firmware/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ppfe -PKG_VERSION:=2017.09 +PKG_SOURCE_DATE:=2017-10-13 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/qoriq-open-source/engine-pfe-bin.git PKG_SOURCE_VERSION:=97cd13d3070d7199e62881bc495b332194b67edd -PKG_MIRROR_HASH:=1ef60cdac49dd57c76ec9ef01d00f6eeb025ba62f0d75f54adeeb3362f5edad2 +PKG_MIRROR_HASH:=3457bfe7201a8410443f34d4bb5fa67d4ff19e2d0f3957e84e3f20e2ae3fa34a PKG_FLAGS:=nonshared |