]> git.sur5r.net Git - u-boot/blob - tools/Makefile
fdt: Add all source files to the libfdt build
[u-boot] / tools / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 # Enable all the config-independent tools
9 ifneq ($(HOST_TOOLS_ALL),)
10 CONFIG_LCD_LOGO = y
11 CONFIG_CMD_LOADS = y
12 CONFIG_CMD_NET = y
13 CONFIG_XWAY_SWAP_BYTES = y
14 CONFIG_NETCONSOLE = y
15 CONFIG_SHA1_CHECK_UB_IMG = y
16 CONFIG_ARCH_SUNXI = y
17 endif
18
19 subdir-$(HOST_TOOLS_ALL) += easylogo
20 subdir-$(HOST_TOOLS_ALL) += gdb
21
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)
32
33 hostprogs-$(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER) += atmel_pmecc_params
34
35 hostprogs-$(CONFIG_LCD_LOGO) += bmp_logo
36 hostprogs-$(CONFIG_VIDEO_LOGO) += bmp_logo
37 HOSTCFLAGS_bmp_logo.o := -pedantic
38
39 hostprogs-$(CONFIG_BUILD_ENVCRC) += envcrc
40 envcrc-objs := envcrc.o lib/crc32.o common/env_embedded.o lib/sha1.o
41
42 hostprogs-$(CONFIG_CMD_NET) += gen_eth_addr
43 HOSTCFLAGS_gen_eth_addr.o := -pedantic
44
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
48
49 hostprogs-$(CONFIG_CMD_LOADS) += img2srec
50 HOSTCFLAGS_img2srec.o := -pedantic
51
52 hostprogs-$(CONFIG_XWAY_SWAP_BYTES) += xway-swap-bytes
53 HOSTCFLAGS_xway-swap-bytes.o := -pedantic
54
55 hostprogs-y += mkenvimage
56 mkenvimage-objs := mkenvimage.o os_support.o lib/crc32.o
57
58 hostprogs-y += dumpimage mkimage
59 hostprogs-$(CONFIG_FIT_SIGNATURE) += fit_info fit_check_sign
60
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 \
65                         fdt_region.c
66 LIBFDT_OBJS := $(addprefix lib/libfdt/, $(patsubst %.c, %.o, $(LIBFDT_CSRCS)))
67
68 RSA_OBJS-$(CONFIG_FIT_SIGNATURE) := $(addprefix lib/rsa/, \
69                                         rsa-sign.o rsa-verify.o rsa-checksum.o \
70                                         rsa-mod-exp.o)
71
72 ROCKCHIP_OBS = lib/rc4.o rkcommon.o rkimage.o rksd.o rkspi.o
73
74 # common objs for dumpimage and mkimage
75 dumpimage-mkimage-objs := aisimage.o \
76                         atmelimage.o \
77                         $(FIT_SIG_OBJS-y) \
78                         common/bootm.o \
79                         lib/crc32.o \
80                         default_image.o \
81                         lib/fdtdec_common.o \
82                         lib/fdtdec.o \
83                         fit_common.o \
84                         fit_image.o \
85                         common/image-fit.o \
86                         image-host.o \
87                         common/image.o \
88                         imagetool.o \
89                         imximage.o \
90                         kwbimage.o \
91                         lib/md5.o \
92                         lpc32xximage.o \
93                         mxsimage.o \
94                         omapimage.o \
95                         os_support.o \
96                         pblimage.o \
97                         pbl_crc32.o \
98                         vybridimage.o \
99                         $(ROCKCHIP_OBS) \
100                         socfpgaimage.o \
101                         lib/sha1.o \
102                         lib/sha256.o \
103                         common/hash.o \
104                         ublimage.o \
105                         zynqimage.o \
106                         zynqmpimage.o \
107                         $(LIBFDT_OBJS) \
108                         gpimage.o \
109                         gpimage-common.o \
110                         $(RSA_OBJS-y)
111
112 dumpimage-objs := $(dumpimage-mkimage-objs) dumpimage.o
113 mkimage-objs   := $(dumpimage-mkimage-objs) mkimage.o
114 fit_info-objs   := $(dumpimage-mkimage-objs) fit_info.o
115 fit_check_sign-objs   := $(dumpimage-mkimage-objs) fit_check_sign.o
116
117 # Build a libfdt Python module if swig is available
118 # Use 'sudo apt-get install swig libpython-dev' to enable this
119 hostprogs-y += \
120         $(if $(shell which swig 2> /dev/null),_libfdt.so)
121 _libfdt.so-sharedobjs += $(LIBFDT_OBJS)
122 libfdt:
123
124 tools/_libfdt.so: $(patsubst %.o,%.c,$(LIBFDT_OBJS)) tools/libfdt_wrap.c
125         LDFLAGS="$(HOSTLDFLAGS)" CFLAGS= ${PYTHON} $(srctree)/lib/libfdt/setup.py \
126                 "$(_hostc_flags)" $^
127         mv _libfdt.so $@
128
129 tools/libfdt_wrap.c: $(srctree)/lib/libfdt/libfdt.swig
130         swig -python -o $@ $<
131
132 # TODO(sjg@chromium.org): Is this correct on Mac OS?
133
134 ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)
135 # Add CONFIG_MXS into host CFLAGS, so we can check whether or not register
136 # the mxsimage support within tools/mxsimage.c .
137 HOSTCFLAGS_mxsimage.o += -DCONFIG_MXS
138 endif
139
140 ifdef CONFIG_FIT_SIGNATURE
141 # This affects include/image.h, but including the board config file
142 # is tricky, so manually define this options here.
143 HOST_EXTRACFLAGS        += -DCONFIG_FIT_SIGNATURE
144 endif
145
146 ifdef CONFIG_SYS_U_BOOT_OFFS
147 HOSTCFLAGS_kwbimage.o += -DCONFIG_SYS_U_BOOT_OFFS=$(CONFIG_SYS_U_BOOT_OFFS)
148 endif
149
150 ifneq ($(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X),)
151 HOSTCFLAGS_kwbimage.o += -DCONFIG_KWB_SECURE
152 endif
153
154 # MXSImage needs LibSSL
155 ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X)$(CONFIG_FIT_SIGNATURE),)
156 HOSTLOADLIBES_mkimage += \
157         $(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto")
158
159 # OS X deprecate openssl in favour of CommonCrypto, supress deprecation
160 # warnings on those systems
161 ifeq ($(HOSTOS),darwin)
162 HOSTCFLAGS_mxsimage.o += -Wno-deprecated-declarations
163 HOSTCFLAGS_image-sig.o += -Wno-deprecated-declarations
164 HOSTCFLAGS_rsa-sign.o += -Wno-deprecated-declarations
165 endif
166 endif
167
168 HOSTLOADLIBES_dumpimage := $(HOSTLOADLIBES_mkimage)
169 HOSTLOADLIBES_fit_info := $(HOSTLOADLIBES_mkimage)
170 HOSTLOADLIBES_fit_check_sign := $(HOSTLOADLIBES_mkimage)
171
172 hostprogs-$(CONFIG_EXYNOS5250) += mkexynosspl
173 hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl
174 HOSTCFLAGS_mkexynosspl.o := -pedantic
175
176 ifdtool-objs := $(LIBFDT_OBJS) ifdtool.o
177 hostprogs-$(CONFIG_X86) += ifdtool
178
179 hostprogs-$(CONFIG_MX23) += mxsboot
180 hostprogs-$(CONFIG_MX28) += mxsboot
181 HOSTCFLAGS_mxsboot.o := -pedantic
182
183 hostprogs-$(CONFIG_ARCH_SUNXI) += mksunxiboot
184 hostprogs-$(CONFIG_ARCH_SUNXI) += sunxi-spl-image-builder
185 sunxi-spl-image-builder-objs := sunxi-spl-image-builder.o lib/bch.o
186
187 hostprogs-$(CONFIG_NETCONSOLE) += ncb
188 hostprogs-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1
189
190 ubsha1-objs := os_support.o ubsha1.o lib/sha1.o
191
192 HOSTCFLAGS_ubsha1.o := -pedantic
193
194 hostprogs-$(CONFIG_KIRKWOOD) += kwboot
195 hostprogs-$(CONFIG_ARCH_MVEBU) += kwboot
196 hostprogs-y += proftool
197 hostprogs-$(CONFIG_STATIC_RELA) += relocate-rela
198
199 hostprogs-y += fdtgrep
200 fdtgrep-objs += $(LIBFDT_OBJS) fdtgrep.o
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:
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/libfdt_env.h \
250                 $(patsubst -I%,-idirafter%, $(filter -I%, $(UBOOTINCLUDE))) \
251                 -I$(srctree)/lib/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