]> git.ipfire.org Git - thirdparty/u-boot.git/blob - tools/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-spi
[thirdparty/u-boot.git] / tools / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
6 # Enable all the config-independent tools
7 ifneq ($(HOST_TOOLS_ALL),)
8 CONFIG_KIRKWOOD = y
9 CONFIG_LCD_LOGO = y
10 CONFIG_CMD_LOADS = y
11 CONFIG_CMD_NET = y
12 CONFIG_XWAY_SWAP_BYTES = y
13 CONFIG_NETCONSOLE = y
14 CONFIG_SHA1_CHECK_UB_IMG = y
15 CONFIG_ARCH_SUNXI = y
16 endif
17
18 subdir-$(HOST_TOOLS_ALL) += easylogo
19 subdir-$(HOST_TOOLS_ALL) += gdb
20
21 # Merge all the different vars for envcrc into one
22 ENVCRC-$(CONFIG_ENV_IS_EMBEDDED) = y
23 ENVCRC-$(CONFIG_ENV_IS_IN_EEPROM) = y
24 ENVCRC-$(CONFIG_ENV_IS_IN_FLASH) = y
25 ENVCRC-$(CONFIG_ENV_IS_IN_ONENAND) = y
26 ENVCRC-$(CONFIG_ENV_IS_IN_NAND) = y
27 ENVCRC-$(CONFIG_ENV_IS_IN_NVRAM) = y
28 ENVCRC-$(CONFIG_ENV_IS_IN_SPI_FLASH) = y
29 CONFIG_BUILD_ENVCRC ?= $(ENVCRC-y)
30
31 hostprogs-$(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER) += atmel_pmecc_params
32
33 hostprogs-$(CONFIG_LCD_LOGO) += bmp_logo
34 hostprogs-$(CONFIG_VIDEO_LOGO) += bmp_logo
35 HOSTCFLAGS_bmp_logo.o := -pedantic
36
37 hostprogs-$(CONFIG_BUILD_ENVCRC) += envcrc
38 envcrc-objs := envcrc.o lib/crc32.o env/embedded.o lib/sha1.o
39
40 hostprogs-$(CONFIG_CMD_NET) += gen_eth_addr
41 HOSTCFLAGS_gen_eth_addr.o := -pedantic
42
43 hostprogs-$(CONFIG_CMD_NET) += gen_ethaddr_crc
44 gen_ethaddr_crc-objs := gen_ethaddr_crc.o lib/crc8.o
45 HOSTCFLAGS_gen_ethaddr_crc.o := -pedantic
46
47 hostprogs-$(CONFIG_CMD_LOADS) += img2srec
48 HOSTCFLAGS_img2srec.o := -pedantic
49
50 hostprogs-$(CONFIG_XWAY_SWAP_BYTES) += xway-swap-bytes
51 HOSTCFLAGS_xway-swap-bytes.o := -pedantic
52
53 hostprogs-y += mkenvimage
54 mkenvimage-objs := mkenvimage.o os_support.o lib/crc32.o
55
56 hostprogs-y += dumpimage mkimage
57 hostprogs-$(CONFIG_FIT_SIGNATURE) += fit_info fit_check_sign
58
59 hostprogs-$(CONFIG_CMD_BOOTEFI_SELFTEST) += file2include
60
61 FIT_SIG_OBJS-$(CONFIG_FIT_SIGNATURE) := common/image-sig.o
62
63 # The following files are synced with upstream DTC.
64 # Use synced versions from scripts/dtc/libfdt/.
65 LIBFDT_SRCS_SYNCED := fdt.c fdt_wip.c fdt_sw.c fdt_rw.c \
66 fdt_strerror.c fdt_empty_tree.c fdt_addresses.c fdt_overlay.c
67 # The following files are locally modified for U-Boot (unfotunately).
68 # Use U-Boot own versions from lib/libfdt/.
69 LIBFDT_SRCS_UNSYNCED := fdt_ro.c fdt_region.c
70
71 LIBFDT_OBJS := $(addprefix libfdt/, $(patsubst %.c, %.o, $(LIBFDT_SRCS_SYNCED))) \
72 $(addprefix lib/libfdt/, $(patsubst %.c, %.o, $(LIBFDT_SRCS_UNSYNCED)))
73
74 RSA_OBJS-$(CONFIG_FIT_SIGNATURE) := $(addprefix lib/rsa/, \
75 rsa-sign.o rsa-verify.o rsa-checksum.o \
76 rsa-mod-exp.o)
77
78 ROCKCHIP_OBS = lib/rc4.o rkcommon.o rkimage.o rksd.o rkspi.o
79
80 # common objs for dumpimage and mkimage
81 dumpimage-mkimage-objs := aisimage.o \
82 atmelimage.o \
83 $(FIT_SIG_OBJS-y) \
84 common/bootm.o \
85 lib/crc32.o \
86 default_image.o \
87 lib/fdtdec_common.o \
88 lib/fdtdec.o \
89 fit_common.o \
90 fit_image.o \
91 common/image-fit.o \
92 image-host.o \
93 common/image.o \
94 imagetool.o \
95 imximage.o \
96 imx8image.o \
97 kwbimage.o \
98 lib/md5.o \
99 lpc32xximage.o \
100 mxsimage.o \
101 omapimage.o \
102 os_support.o \
103 pblimage.o \
104 pbl_crc32.o \
105 vybridimage.o \
106 stm32image.o \
107 $(ROCKCHIP_OBS) \
108 socfpgaimage.o \
109 lib/sha1.o \
110 lib/sha256.o \
111 common/hash.o \
112 ublimage.o \
113 zynqimage.o \
114 zynqmpimage.o \
115 zynqmpbif.o \
116 $(LIBFDT_OBJS) \
117 gpimage.o \
118 gpimage-common.o \
119 mtk_image.o \
120 $(RSA_OBJS-y)
121
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
126 file2include-objs := file2include.o
127
128 ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)
129 # Add CONFIG_MXS into host CFLAGS, so we can check whether or not register
130 # the mxsimage support within tools/mxsimage.c .
131 HOSTCFLAGS_mxsimage.o += -DCONFIG_MXS
132 endif
133
134 ifdef CONFIG_FIT_SIGNATURE
135 # This affects include/image.h, but including the board config file
136 # is tricky, so manually define this options here.
137 HOST_EXTRACFLAGS += -DCONFIG_FIT_SIGNATURE
138 HOST_EXTRACFLAGS += -DCONFIG_FIT_SIGNATURE_MAX_SIZE=$(CONFIG_FIT_SIGNATURE_MAX_SIZE)
139 endif
140
141 ifdef CONFIG_SYS_U_BOOT_OFFS
142 HOSTCFLAGS_kwbimage.o += -DCONFIG_SYS_U_BOOT_OFFS=$(CONFIG_SYS_U_BOOT_OFFS)
143 endif
144
145 ifneq ($(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X),)
146 HOSTCFLAGS_kwbimage.o += -DCONFIG_KWB_SECURE
147 endif
148
149 # MXSImage needs LibSSL
150 ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X)$(CONFIG_FIT_SIGNATURE),)
151 HOSTLOADLIBES_mkimage += \
152 $(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto")
153
154 # OS X deprecate openssl in favour of CommonCrypto, supress deprecation
155 # warnings on those systems
156 ifeq ($(HOSTOS),darwin)
157 HOSTCFLAGS_mxsimage.o += -Wno-deprecated-declarations
158 HOSTCFLAGS_image-sig.o += -Wno-deprecated-declarations
159 HOSTCFLAGS_rsa-sign.o += -Wno-deprecated-declarations
160 endif
161 endif
162
163 HOSTCFLAGS_fit_image.o += -DMKIMAGE_DTC=\"$(CONFIG_MKIMAGE_DTC_PATH)\"
164
165 HOSTLOADLIBES_dumpimage := $(HOSTLOADLIBES_mkimage)
166 HOSTLOADLIBES_fit_info := $(HOSTLOADLIBES_mkimage)
167 HOSTLOADLIBES_fit_check_sign := $(HOSTLOADLIBES_mkimage)
168
169 hostprogs-$(CONFIG_EXYNOS5250) += mkexynosspl
170 hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl
171 HOSTCFLAGS_mkexynosspl.o := -pedantic
172
173 ifdtool-objs := $(LIBFDT_OBJS) ifdtool.o
174 hostprogs-$(CONFIG_X86) += ifdtool
175
176 hostprogs-$(CONFIG_MX23) += mxsboot
177 hostprogs-$(CONFIG_MX28) += mxsboot
178 HOSTCFLAGS_mxsboot.o := -pedantic
179
180 hostprogs-$(CONFIG_ARCH_SUNXI) += mksunxiboot
181 hostprogs-$(CONFIG_ARCH_SUNXI) += sunxi-spl-image-builder
182 sunxi-spl-image-builder-objs := sunxi-spl-image-builder.o lib/bch.o
183
184 hostprogs-$(CONFIG_NETCONSOLE) += ncb
185 hostprogs-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1
186
187 ubsha1-objs := os_support.o ubsha1.o lib/sha1.o
188
189 HOSTCFLAGS_ubsha1.o := -pedantic
190
191 hostprogs-$(CONFIG_KIRKWOOD) += kwboot
192 hostprogs-$(CONFIG_ARCH_MVEBU) += kwboot
193 hostprogs-y += proftool
194 hostprogs-$(CONFIG_STATIC_RELA) += relocate-rela
195 hostprogs-$(CONFIG_RISCV) += prelink-riscv
196
197 hostprogs-y += fdtgrep
198 fdtgrep-objs += $(LIBFDT_OBJS) fdtgrep.o
199
200 hostprogs-$(CONFIG_MIPS) += mips-relocs
201
202 # We build some files with extra pedantic flags to try to minimize things
203 # that won't build on some weird host compiler -- though there are lots of
204 # exceptions for files that aren't complaint.
205 HOSTCFLAGS_crc32.o := -pedantic
206 HOSTCFLAGS_crc8.o := -pedantic
207 HOSTCFLAGS_md5.o := -pedantic
208 HOSTCFLAGS_sha1.o := -pedantic
209 HOSTCFLAGS_sha256.o := -pedantic
210
211 quiet_cmd_wrap = WRAP $@
212 cmd_wrap = echo "\#include <../$(patsubst $(obj)/%,%,$@)>" >$@
213
214 $(obj)/lib/%.c $(obj)/common/%.c $(obj)/env/%.c:
215 $(call cmd,wrap)
216
217 clean-dirs := lib common
218
219 always := $(hostprogs-y)
220
221 # Generated LCD/video logo
222 LOGO_H = $(objtree)/include/bmp_logo.h
223 LOGO_DATA_H = $(objtree)/include/bmp_logo_data.h
224 LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_H)
225 LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_DATA_H)
226 LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_H)
227 LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_DATA_H)
228
229 # Generic logo
230 ifeq ($(LOGO_BMP),)
231 LOGO_BMP= $(srctree)/$(src)/logos/denx.bmp
232
233 # Use board logo and fallback to vendor
234 ifneq ($(wildcard $(srctree)/$(src)/logos/$(BOARD).bmp),)
235 LOGO_BMP= $(srctree)/$(src)/logos/$(BOARD).bmp
236 else
237 ifneq ($(wildcard $(srctree)/$(src)/logos/$(VENDOR).bmp),)
238 LOGO_BMP= $(srctree)/$(src)/logos/$(VENDOR).bmp
239 endif
240 endif
241
242 endif # !LOGO_BMP
243
244 #
245 # Use native tools and options
246 # Define __KERNEL_STRICT_NAMES to prevent typedef overlaps
247 # Define _GNU_SOURCE to obtain the getline prototype from stdio.h
248 #
249 HOST_EXTRACFLAGS += -include $(srctree)/include/compiler.h \
250 $(patsubst -I%,-idirafter%, $(filter -I%, $(UBOOTINCLUDE))) \
251 -I$(srctree)/scripts/dtc/libfdt \
252 -I$(srctree)/tools \
253 -DUSE_HOSTCC \
254 -D__KERNEL_STRICT_NAMES \
255 -D_GNU_SOURCE
256
257 __build: $(LOGO-y)
258
259 $(LOGO_H): $(obj)/bmp_logo $(LOGO_BMP)
260 $(obj)/bmp_logo --gen-info $(LOGO_BMP) > $@
261
262 $(LOGO_DATA_H): $(obj)/bmp_logo $(LOGO_BMP)
263 $(obj)/bmp_logo --gen-data $(LOGO_BMP) > $@
264
265 # Let clean descend into subdirs
266 subdir- += env
267
268 ifneq ($(CROSS_BUILD_TOOLS),)
269 override HOSTCC = $(CC)
270
271 quiet_cmd_crosstools_strip = STRIP $^
272 cmd_crosstools_strip = $(STRIP) $^; touch $@
273 $(obj)/.strip: $(call objectify,$(filter $(always),$(hostprogs-y)))
274 $(call cmd,crosstools_strip)
275
276 always += .strip
277 endif
278 clean-files += .strip