diff options
author | Luka Perkov <luka@openwrt.org> | 2014-05-21 09:42:33 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-05-21 09:42:33 +0000 |
commit | 5342a1a2ea5ce8c7ece7c0f2f4fdf4c4d202f045 (patch) | |
tree | 708029231ac804143384629193929cdb0d948f5c /tools/mkimage/Makefile | |
parent | b10140d8320840695e96a77b9cb1d255b22a602a (diff) | |
download | upstream-5342a1a2ea5ce8c7ece7c0f2f4fdf4c4d202f045.tar.gz upstream-5342a1a2ea5ce8c7ece7c0f2f4fdf4c4d202f045.tar.bz2 upstream-5342a1a2ea5ce8c7ece7c0f2f4fdf4c4d202f045.zip |
mkimage: update to 2014.04
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 40807
Diffstat (limited to 'tools/mkimage/Makefile')
-rw-r--r-- | tools/mkimage/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile index d2efd62d23..47e918a5a2 100644 --- a/tools/mkimage/Makefile +++ b/tools/mkimage/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2013 OpenWrt.org +# Copyright (C) 2006-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mkimage -PKG_VERSION:=2013.07-rc1 +PKG_VERSION:=2014.04 PKG_SOURCE:=u-boot-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot -PKG_MD5SUM:=9b14d9a8981ce2e429956af7cc96996e +PKG_MD5SUM:=6d2116d1385a66e9a59742caa9d62a54 PKG_CAT:=bzcat HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/u-boot-$(PKG_VERSION) @@ -24,11 +24,14 @@ define Host/Prepare $(HOST_BUILD_DIR)/include/errno.h \ $(HOST_BUILD_DIR)/include/malloc.h \ $(HOST_BUILD_DIR)/tools/.depend + touch $(HOST_BUILD_DIR)/include/config.mk touch $(HOST_BUILD_DIR)/include/config.h endef define Host/Compile - $(MAKE) -C $(HOST_BUILD_DIR) BUILD_DIR= BIN_FILES-y="mkimage" HOSTLDFLAGS="$(HOST_STATIC_LINKING)" tools + $(MAKE) -C $(HOST_BUILD_DIR) \ + HOSTLDFLAGS="$(HOST_STATIC_LINKING)" \ + tools-only endef define Host/Install |