2 # (C) Copyright 2000-2006
5 # SPDX-License-Identifier: GPL-2.0+
8 # Enable all the config-independent tools
9 ifneq ($(HOST_TOOLS_ALL),)
13 CONFIG_XWAY_SWAP_BYTES = y
15 CONFIG_SHA1_CHECK_UB_IMG = y
19 subdir-$(HOST_TOOLS_ALL) += easylogo
20 subdir-$(HOST_TOOLS_ALL) += gdb
22 # Merge all the different vars for envcrc into one
23 ENVCRC-$(CONFIG_ENV_IS_EMBEDDED) = y
24 ENVCRC-$(CONFIG_ENV_IS_IN_DATAFLASH) = y
25 ENVCRC-$(CONFIG_ENV_IS_IN_EEPROM) = y
26 ENVCRC-$(CONFIG_ENV_IS_IN_FLASH) = y
27 ENVCRC-$(CONFIG_ENV_IS_IN_ONENAND) = y
28 ENVCRC-$(CONFIG_ENV_IS_IN_NAND) = y
29 ENVCRC-$(CONFIG_ENV_IS_IN_NVRAM) = y
30 ENVCRC-$(CONFIG_ENV_IS_IN_SPI_FLASH) = y
31 CONFIG_BUILD_ENVCRC ?= $(ENVCRC-y)
33 hostprogs-$(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER) += atmel_pmecc_params
35 hostprogs-$(CONFIG_LCD_LOGO) += bmp_logo
36 hostprogs-$(CONFIG_VIDEO_LOGO) += bmp_logo
37 HOSTCFLAGS_bmp_logo.o := -pedantic
39 hostprogs-$(CONFIG_BUILD_ENVCRC) += envcrc
40 envcrc-objs := envcrc.o lib/crc32.o common/env_embedded.o lib/sha1.o
42 hostprogs-$(CONFIG_CMD_NET) += gen_eth_addr
43 HOSTCFLAGS_gen_eth_addr.o := -pedantic
45 hostprogs-$(CONFIG_CMD_NET) += gen_ethaddr_crc
46 gen_ethaddr_crc-objs := gen_ethaddr_crc.o lib/crc8.o
47 HOSTCFLAGS_gen_ethaddr_crc.o := -pedantic
49 hostprogs-$(CONFIG_CMD_LOADS) += img2srec
50 HOSTCFLAGS_img2srec.o := -pedantic
52 hostprogs-$(CONFIG_XWAY_SWAP_BYTES) += xway-swap-bytes
53 HOSTCFLAGS_xway-swap-bytes.o := -pedantic
55 hostprogs-y += mkenvimage
56 mkenvimage-objs := mkenvimage.o os_support.o lib/crc32.o
58 hostprogs-y += dumpimage mkimage
59 hostprogs-$(CONFIG_FIT_SIGNATURE) += fit_info fit_check_sign
61 FIT_SIG_OBJS-$(CONFIG_FIT_SIGNATURE) := common/image-sig.o
62 # Flattened device tree objects
63 LIBFDT_CSRCS := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c \
64 fdt_empty_tree.c fdt_addresses.c fdt_overlay.c \
67 # Unfortunately setup.py below cannot handle srctree being ".." which it often
68 # is. It fails with an error like:
69 # Fatal error: can't create build/temp.linux-x86_64-2.7/../lib/libfdt/fdt.o:
70 # No such file or directory
71 # To fix this, use an absolute path.
72 libfdt_tree := $(shell readlink -f $(srctree)/lib/libfdt)
74 LIBFDT_SRCS := $(addprefix $(libfdt_tree)/, $(LIBFDT_CSRCS))
75 LIBFDT_SWIG := $(addprefix $(libfdt_tree)/, pylibfdt/libfdt.i)
76 LIBFDT_OBJS := $(addprefix lib/libfdt/, $(patsubst %.c, %.o, $(LIBFDT_CSRCS)))
78 RSA_OBJS-$(CONFIG_FIT_SIGNATURE) := $(addprefix lib/rsa/, \
79 rsa-sign.o rsa-verify.o rsa-checksum.o \
82 ROCKCHIP_OBS = lib/rc4.o rkcommon.o rkimage.o rksd.o rkspi.o
84 # common objs for dumpimage and mkimage
85 dumpimage-mkimage-objs := aisimage.o \
122 dumpimage-objs := $(dumpimage-mkimage-objs) dumpimage.o
123 mkimage-objs := $(dumpimage-mkimage-objs) mkimage.o
124 fit_info-objs := $(dumpimage-mkimage-objs) fit_info.o
125 fit_check_sign-objs := $(dumpimage-mkimage-objs) fit_check_sign.o
127 # Unfortunately setup.py (or actually the Python distutil implementation)
128 # puts files into the same directory as the .i file. We cannot touch the source
129 # directory, so we copy the .i file into the tools/ build subdirectory before
130 # calling setup. This directory is safe to write to. This ensures that we get
131 # all three files in $(obj)/tools: _libfdt.so, libfdt.py and libfdt_wrap.c
132 # The latter is a temporary file which we could actually remove.
133 tools/_libfdt.so: $(LIBFDT_SRCS) $(LIBFDT_SWIG)
134 cp $(LIBFDT_SWIG) tools/.
136 unset CROSS_COMPILE; \
137 LDFLAGS="$(HOSTLDFLAGS)" CFLAGS= VERSION="u-boot-$(UBOOTVERSION)" \
138 CPPFLAGS="$(_hostc_flags)" OBJDIR=tools \
139 SOURCES="$(LIBFDT_SRCS) tools/libfdt.i" \
140 SWIG_OPTS="-I$(srctree)/lib/libfdt -I$(srctree)/lib" \
141 $(libfdt_tree)/pylibfdt/setup.py --quiet build_ext \
144 # Build a libfdt Python module if swig is available
145 # Use 'sudo apt-get install swig libpython-dev' to enable this
147 $(if $(shell which swig 2> /dev/null),_libfdt_legacy.so)
148 _libfdt_legacy.so-sharedobjs += $(LIBFDT_OBJS)
151 tools/_libfdt_legacy.so: $(patsubst %.o,%.c,$(LIBFDT_OBJS)) \
152 tools/libfdt_legacy_wrap.c
153 LDFLAGS="$(HOSTLDFLAGS)" CFLAGS= ${PYTHON} $(srctree)/lib/libfdt/setup.py \
155 mv _libfdt_legacy.so $@
157 tools/libfdt_legacy_wrap.c: $(srctree)/lib/libfdt/libfdt_legacy.swig
158 swig -python -o $@ $<
162 ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)
163 # Add CONFIG_MXS into host CFLAGS, so we can check whether or not register
164 # the mxsimage support within tools/mxsimage.c .
165 HOSTCFLAGS_mxsimage.o += -DCONFIG_MXS
168 ifdef CONFIG_FIT_SIGNATURE
169 # This affects include/image.h, but including the board config file
170 # is tricky, so manually define this options here.
171 HOST_EXTRACFLAGS += -DCONFIG_FIT_SIGNATURE
174 ifdef CONFIG_SYS_U_BOOT_OFFS
175 HOSTCFLAGS_kwbimage.o += -DCONFIG_SYS_U_BOOT_OFFS=$(CONFIG_SYS_U_BOOT_OFFS)
178 ifneq ($(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X),)
179 HOSTCFLAGS_kwbimage.o += -DCONFIG_KWB_SECURE
182 # MXSImage needs LibSSL
183 ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X)$(CONFIG_FIT_SIGNATURE),)
184 HOSTLOADLIBES_mkimage += \
185 $(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto")
187 # OS X deprecate openssl in favour of CommonCrypto, supress deprecation
188 # warnings on those systems
189 ifeq ($(HOSTOS),darwin)
190 HOSTCFLAGS_mxsimage.o += -Wno-deprecated-declarations
191 HOSTCFLAGS_image-sig.o += -Wno-deprecated-declarations
192 HOSTCFLAGS_rsa-sign.o += -Wno-deprecated-declarations
196 HOSTLOADLIBES_dumpimage := $(HOSTLOADLIBES_mkimage)
197 HOSTLOADLIBES_fit_info := $(HOSTLOADLIBES_mkimage)
198 HOSTLOADLIBES_fit_check_sign := $(HOSTLOADLIBES_mkimage)
200 hostprogs-$(CONFIG_EXYNOS5250) += mkexynosspl
201 hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl
202 HOSTCFLAGS_mkexynosspl.o := -pedantic
204 ifdtool-objs := $(LIBFDT_OBJS) ifdtool.o
205 hostprogs-$(CONFIG_X86) += ifdtool
207 hostprogs-$(CONFIG_MX23) += mxsboot
208 hostprogs-$(CONFIG_MX28) += mxsboot
209 HOSTCFLAGS_mxsboot.o := -pedantic
211 hostprogs-$(CONFIG_ARCH_SUNXI) += mksunxiboot
212 hostprogs-$(CONFIG_ARCH_SUNXI) += sunxi-spl-image-builder
213 sunxi-spl-image-builder-objs := sunxi-spl-image-builder.o lib/bch.o
215 hostprogs-$(CONFIG_NETCONSOLE) += ncb
216 hostprogs-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1
218 ubsha1-objs := os_support.o ubsha1.o lib/sha1.o
220 HOSTCFLAGS_ubsha1.o := -pedantic
222 hostprogs-$(CONFIG_KIRKWOOD) += kwboot
223 hostprogs-$(CONFIG_ARCH_MVEBU) += kwboot
224 hostprogs-y += proftool
225 hostprogs-$(CONFIG_STATIC_RELA) += relocate-rela
227 hostprogs-y += fdtgrep
228 fdtgrep-objs += $(LIBFDT_OBJS) fdtgrep.o
230 # We build some files with extra pedantic flags to try to minimize things
231 # that won't build on some weird host compiler -- though there are lots of
232 # exceptions for files that aren't complaint.
233 HOSTCFLAGS_crc32.o := -pedantic
234 HOSTCFLAGS_crc8.o := -pedantic
235 HOSTCFLAGS_md5.o := -pedantic
236 HOSTCFLAGS_sha1.o := -pedantic
237 HOSTCFLAGS_sha256.o := -pedantic
239 quiet_cmd_wrap = WRAP $@
240 cmd_wrap = echo "\#include <../$(patsubst $(obj)/%,%,$@)>" >$@
242 $(obj)/lib/%.c $(obj)/common/%.c:
245 clean-dirs := lib common
247 always := $(hostprogs-y)
249 # Build a libfdt Python module if swig is available
250 # Use 'sudo apt-get install swig libpython-dev' to enable this
251 always += $(if $(shell which swig 2> /dev/null),_libfdt.so)
253 # Generated LCD/video logo
254 LOGO_H = $(objtree)/include/bmp_logo.h
255 LOGO_DATA_H = $(objtree)/include/bmp_logo_data.h
256 LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_H)
257 LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_DATA_H)
258 LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_H)
259 LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_DATA_H)
263 LOGO_BMP= $(srctree)/$(src)/logos/denx.bmp
265 # Use board logo and fallback to vendor
266 ifneq ($(wildcard $(srctree)/$(src)/logos/$(BOARD).bmp),)
267 LOGO_BMP= $(srctree)/$(src)/logos/$(BOARD).bmp
269 ifneq ($(wildcard $(srctree)/$(src)/logos/$(VENDOR).bmp),)
270 LOGO_BMP= $(srctree)/$(src)/logos/$(VENDOR).bmp
277 # Use native tools and options
278 # Define __KERNEL_STRICT_NAMES to prevent typedef overlaps
279 # Define _GNU_SOURCE to obtain the getline prototype from stdio.h
281 HOST_EXTRACFLAGS += -include $(srctree)/include/libfdt_env.h \
282 $(patsubst -I%,-idirafter%, $(filter -I%, $(UBOOTINCLUDE))) \
283 -I$(srctree)/lib/libfdt \
286 -D__KERNEL_STRICT_NAMES \
291 $(LOGO_H): $(obj)/bmp_logo $(LOGO_BMP)
292 $(obj)/bmp_logo --gen-info $(LOGO_BMP) > $@
294 $(LOGO_DATA_H): $(obj)/bmp_logo $(LOGO_BMP)
295 $(obj)/bmp_logo --gen-data $(LOGO_BMP) > $@
297 # Let clean descend into subdirs
300 ifneq ($(CROSS_BUILD_TOOLS),)
301 override HOSTCC = $(CC)
303 quiet_cmd_crosstools_strip = STRIP $^
304 cmd_crosstools_strip = $(STRIP) $^; touch $@
305 $(obj)/.strip: $(call objectify,$(filter $(always),$(hostprogs-y)))
306 $(call cmd,crosstools_strip)
310 clean-files += .strip