e6ccb40ba5
* The fit image is now created with 0666 permission in upstream U-Boot remove our patch switch creates it with 0744 * The generated/autoconf.h file is created now as an empty file, it is not needed to remove this include any more. * Upstream lib/rsa/rsa-sign.c now includes stdlib.h instead of malloc.h * ALIGN_MASK was moved to imagetool.h, own patch should not be needed any more. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mkimage
|
|
PKG_VERSION:=2021.01
|
|
|
|
PKG_SOURCE:=u-boot-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:= \
|
|
https://mirror.cyberbits.eu/u-boot \
|
|
https://ftp.denx.de/pub/u-boot \
|
|
ftp://ftp.denx.de/pub/u-boot
|
|
PKG_HASH:=b407e1510a74e863b8b5cb42a24625344f0e0c2fc7582d8c866bd899367d0454
|
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/u-boot-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Host/Prepare
|
|
$(Host/Prepare/Default)
|
|
mkdir -p $(HOST_BUILD_DIR)/include/config
|
|
touch $(HOST_BUILD_DIR)/include/config/auto.conf
|
|
mkdir -p $(HOST_BUILD_DIR)/include/generated/
|
|
touch $(HOST_BUILD_DIR)/include/generated/autoconf.h
|
|
endef
|
|
|
|
define Host/Compile
|
|
$(MAKE) -C $(HOST_BUILD_DIR) \
|
|
HOSTCFLAGS="$(HOST_CFLAGS)" \
|
|
HOSTLDFLAGS="$(HOST_LDFLAGS)" \
|
|
no-dot-config-targets=tools-only \
|
|
CONFIG_MKIMAGE_DTC_PATH=dtc \
|
|
CONFIG_FIT=y \
|
|
CONFIG_FIT_SIGNATURE=y \
|
|
CONFIG_FIT_SIGNATURE_MAX_SIZE=0x10000000 \
|
|
tools-only
|
|
endef
|
|
|
|
define Host/Install
|
|
$(CP) $(HOST_BUILD_DIR)/tools/mkimage $(STAGING_DIR_HOST)/bin/
|
|
$(CP) $(HOST_BUILD_DIR)/tools/mkenvimage $(STAGING_DIR_HOST)/bin/
|
|
endef
|
|
|
|
define Host/Clean
|
|
rm -f $(STAGING_DIR_HOST)/bin/mkimage
|
|
rm -f $(STAGING_DIR_HOST)/bin/mkenvimage
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|