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 | 9288835a40296ca76645430d2bf14fbf43897a5a (patch) | |
tree | 72751dbbfda8619d3393d088c44653de0d5ee79a /tools/mkimage/Makefile | |
parent | c8b254e5ff25207026c5ba94b2e8fddf0e2db9d4 (diff) | |
download | upstream-9288835a40296ca76645430d2bf14fbf43897a5a.tar.gz upstream-9288835a40296ca76645430d2bf14fbf43897a5a.tar.bz2 upstream-9288835a40296ca76645430d2bf14fbf43897a5a.zip |
[tools] mkimage: update to 2014.04
Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40807 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 |