Home | History | Annotate | Download | only in tools
      1 # SPDX-License-Identifier: GPL-2.0+
      2 #
      3 # (C) Copyright 2000-2006
      4 # Wolfgang Denk, DENX Software Engineering, wd (at] 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 			kwbimage.o \
     97 			lib/md5.o \
     98 			lpc32xximage.o \
     99 			mxsimage.o \
    100 			omapimage.o \
    101 			os_support.o \
    102 			pblimage.o \
    103 			pbl_crc32.o \
    104 			vybridimage.o \
    105 			stm32image.o \
    106 			$(ROCKCHIP_OBS) \
    107 			socfpgaimage.o \
    108 			lib/sha1.o \
    109 			lib/sha256.o \
    110 			common/hash.o \
    111 			ublimage.o \
    112 			zynqimage.o \
    113 			zynqmpimage.o \
    114 			zynqmpbif.o \
    115 			$(LIBFDT_OBJS) \
    116 			gpimage.o \
    117 			gpimage-common.o \
    118 			$(RSA_OBJS-y)
    119 
    120 dumpimage-objs := $(dumpimage-mkimage-objs) dumpimage.o
    121 mkimage-objs   := $(dumpimage-mkimage-objs) mkimage.o
    122 fit_info-objs   := $(dumpimage-mkimage-objs) fit_info.o
    123 fit_check_sign-objs   := $(dumpimage-mkimage-objs) fit_check_sign.o
    124 file2include-objs := file2include.o
    125 
    126 ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)
    127 # Add CONFIG_MXS into host CFLAGS, so we can check whether or not register
    128 # the mxsimage support within tools/mxsimage.c .
    129 HOSTCFLAGS_mxsimage.o += -DCONFIG_MXS
    130 endif
    131 
    132 ifdef CONFIG_FIT_SIGNATURE
    133 # This affects include/image.h, but including the board config file
    134 # is tricky, so manually define this options here.
    135 HOST_EXTRACFLAGS	+= -DCONFIG_FIT_SIGNATURE
    136 endif
    137 
    138 ifdef CONFIG_SYS_U_BOOT_OFFS
    139 HOSTCFLAGS_kwbimage.o += -DCONFIG_SYS_U_BOOT_OFFS=$(CONFIG_SYS_U_BOOT_OFFS)
    140 endif
    141 
    142 ifneq ($(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X),)
    143 HOSTCFLAGS_kwbimage.o += -DCONFIG_KWB_SECURE
    144 endif
    145 
    146 # MXSImage needs LibSSL
    147 ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X)$(CONFIG_FIT_SIGNATURE),)
    148 HOSTLOADLIBES_mkimage += \
    149 	$(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto")
    150 
    151 # OS X deprecate openssl in favour of CommonCrypto, supress deprecation
    152 # warnings on those systems
    153 ifeq ($(HOSTOS),darwin)
    154 HOSTCFLAGS_mxsimage.o += -Wno-deprecated-declarations
    155 HOSTCFLAGS_image-sig.o += -Wno-deprecated-declarations
    156 HOSTCFLAGS_rsa-sign.o += -Wno-deprecated-declarations
    157 endif
    158 endif
    159 
    160 HOSTCFLAGS_fit_image.o += -DMKIMAGE_DTC=\"$(CONFIG_MKIMAGE_DTC_PATH)\"
    161 
    162 HOSTLOADLIBES_dumpimage := $(HOSTLOADLIBES_mkimage)
    163 HOSTLOADLIBES_fit_info := $(HOSTLOADLIBES_mkimage)
    164 HOSTLOADLIBES_fit_check_sign := $(HOSTLOADLIBES_mkimage)
    165 
    166 hostprogs-$(CONFIG_EXYNOS5250) += mkexynosspl
    167 hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl
    168 HOSTCFLAGS_mkexynosspl.o := -pedantic
    169 
    170 ifdtool-objs := $(LIBFDT_OBJS) ifdtool.o
    171 hostprogs-$(CONFIG_X86) += ifdtool
    172 
    173 hostprogs-$(CONFIG_MX23) += mxsboot
    174 hostprogs-$(CONFIG_MX28) += mxsboot
    175 HOSTCFLAGS_mxsboot.o := -pedantic
    176 
    177 hostprogs-$(CONFIG_ARCH_SUNXI) += mksunxiboot
    178 hostprogs-$(CONFIG_ARCH_SUNXI) += sunxi-spl-image-builder
    179 sunxi-spl-image-builder-objs := sunxi-spl-image-builder.o lib/bch.o
    180 
    181 hostprogs-$(CONFIG_NETCONSOLE) += ncb
    182 hostprogs-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1
    183 
    184 ubsha1-objs := os_support.o ubsha1.o lib/sha1.o
    185 
    186 HOSTCFLAGS_ubsha1.o := -pedantic
    187 
    188 hostprogs-$(CONFIG_KIRKWOOD) += kwboot
    189 hostprogs-$(CONFIG_ARCH_MVEBU) += kwboot
    190 hostprogs-y += proftool
    191 hostprogs-$(CONFIG_STATIC_RELA) += relocate-rela
    192 hostprogs-$(CONFIG_RISCV) += prelink-riscv
    193 
    194 hostprogs-y += fdtgrep
    195 fdtgrep-objs += $(LIBFDT_OBJS) fdtgrep.o
    196 
    197 hostprogs-$(CONFIG_MIPS) += mips-relocs
    198 
    199 # We build some files with extra pedantic flags to try to minimize things
    200 # that won't build on some weird host compiler -- though there are lots of
    201 # exceptions for files that aren't complaint.
    202 HOSTCFLAGS_crc32.o := -pedantic
    203 HOSTCFLAGS_crc8.o := -pedantic
    204 HOSTCFLAGS_md5.o := -pedantic
    205 HOSTCFLAGS_sha1.o := -pedantic
    206 HOSTCFLAGS_sha256.o := -pedantic
    207 
    208 quiet_cmd_wrap = WRAP    $@
    209 cmd_wrap = echo "\#include <../$(patsubst $(obj)/%,%,$@)>" >$@
    210 
    211 $(obj)/lib/%.c $(obj)/common/%.c $(obj)/env/%.c:
    212 	$(call cmd,wrap)
    213 
    214 clean-dirs := lib common
    215 
    216 always := $(hostprogs-y)
    217 
    218 # Generated LCD/video logo
    219 LOGO_H = $(objtree)/include/bmp_logo.h
    220 LOGO_DATA_H = $(objtree)/include/bmp_logo_data.h
    221 LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_H)
    222 LOGO-$(CONFIG_LCD_LOGO) += $(LOGO_DATA_H)
    223 LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_H)
    224 LOGO-$(CONFIG_VIDEO_LOGO) += $(LOGO_DATA_H)
    225 
    226 # Generic logo
    227 ifeq ($(LOGO_BMP),)
    228 LOGO_BMP= $(srctree)/$(src)/logos/denx.bmp
    229 
    230 # Use board logo and fallback to vendor
    231 ifneq ($(wildcard $(srctree)/$(src)/logos/$(BOARD).bmp),)
    232 LOGO_BMP= $(srctree)/$(src)/logos/$(BOARD).bmp
    233 else
    234 ifneq ($(wildcard $(srctree)/$(src)/logos/$(VENDOR).bmp),)
    235 LOGO_BMP= $(srctree)/$(src)/logos/$(VENDOR).bmp
    236 endif
    237 endif
    238 
    239 endif # !LOGO_BMP
    240 
    241 #
    242 # Use native tools and options
    243 # Define __KERNEL_STRICT_NAMES to prevent typedef overlaps
    244 # Define _GNU_SOURCE to obtain the getline prototype from stdio.h
    245 #
    246 HOST_EXTRACFLAGS += -include $(srctree)/include/compiler.h \
    247 		$(patsubst -I%,-idirafter%, $(filter -I%, $(UBOOTINCLUDE))) \
    248 		-I$(srctree)/scripts/dtc/libfdt \
    249 		-I$(srctree)/tools \
    250 		-DUSE_HOSTCC \
    251 		-D__KERNEL_STRICT_NAMES \
    252 		-D_GNU_SOURCE
    253 
    254 __build:	$(LOGO-y)
    255 
    256 $(LOGO_H):	$(obj)/bmp_logo $(LOGO_BMP)
    257 	$(obj)/bmp_logo --gen-info $(LOGO_BMP) > $@
    258 
    259 $(LOGO_DATA_H):	$(obj)/bmp_logo $(LOGO_BMP)
    260 	$(obj)/bmp_logo --gen-data $(LOGO_BMP) > $@
    261 
    262 # Let clean descend into subdirs
    263 subdir- += env
    264 
    265 ifneq ($(CROSS_BUILD_TOOLS),)
    266 override HOSTCC = $(CC)
    267 
    268 quiet_cmd_crosstools_strip = STRIP   $^
    269       cmd_crosstools_strip = $(STRIP) $^; touch $@
    270 $(obj)/.strip: $(call objectify,$(filter $(always),$(hostprogs-y)))
    271 	$(call cmd,crosstools_strip)
    272 
    273 always += .strip
    274 endif
    275 clean-files += .strip
    276