tools: refactor HOSTLOADLIBES_* options
The tools mkimage, dumpimage, fit_info, fit_check_sign always have the common libraries to be linked, so HOSTLOADLIBES_* can be consolidated a little bit. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
66948c25bb
commit
97cb4e5450
|
@ -105,28 +105,27 @@ fit_check_sign$(SFX)-objs := $(dumpimage-mkimage-objs) fit_check_sign.o
|
||||||
|
|
||||||
# TODO(sjg@chromium.org): Is this correct on Mac OS?
|
# TODO(sjg@chromium.org): Is this correct on Mac OS?
|
||||||
|
|
||||||
# MXSImage needs LibSSL
|
|
||||||
ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)
|
ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)
|
||||||
HOSTLOADLIBES_dumpimage$(SFX) := -lssl -lcrypto
|
|
||||||
HOSTLOADLIBES_mkimage$(SFX) := -lssl -lcrypto
|
|
||||||
HOSTLOADLIBES_fit_info$(SFX) := -lssl -lcrypto
|
|
||||||
HOSTLOADLIBES_fit_check_sign$(SFX) := -lssl -lcrypto
|
|
||||||
# Add CONFIG_MXS into host CFLAGS, so we can check whether or not register
|
# Add CONFIG_MXS into host CFLAGS, so we can check whether or not register
|
||||||
# the mxsimage support within tools/mxsimage.c .
|
# the mxsimage support within tools/mxsimage.c .
|
||||||
HOSTCFLAGS_mxsimage.o += -DCONFIG_MXS
|
HOSTCFLAGS_mxsimage.o += -DCONFIG_MXS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef CONFIG_FIT_SIGNATURE
|
ifdef CONFIG_FIT_SIGNATURE
|
||||||
HOSTLOADLIBES_dumpimage$(SFX) := -lssl -lcrypto
|
|
||||||
HOSTLOADLIBES_mkimage$(SFX) := -lssl -lcrypto
|
|
||||||
HOSTLOADLIBES_fit_info$(SFX) := -lssl -lcrypto
|
|
||||||
HOSTLOADLIBES_fit_check_sign$(SFX) := -lssl -lcrypto
|
|
||||||
|
|
||||||
# This affects include/image.h, but including the board config file
|
# This affects include/image.h, but including the board config file
|
||||||
# is tricky, so manually define this options here.
|
# is tricky, so manually define this options here.
|
||||||
HOST_EXTRACFLAGS += -DCONFIG_FIT_SIGNATURE
|
HOST_EXTRACFLAGS += -DCONFIG_FIT_SIGNATURE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# MXSImage needs LibSSL
|
||||||
|
ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_FIT_SIGNATURE),)
|
||||||
|
HOSTLOADLIBES_mkimage$(SFX) += -lssl -lcrypto
|
||||||
|
endif
|
||||||
|
|
||||||
|
HOSTLOADLIBES_dumpimage$(SFX) := $(HOSTLOADLIBES_mkimage$(SFX))
|
||||||
|
HOSTLOADLIBES_fit_info$(SFX) := $(HOSTLOADLIBES_mkimage$(SFX))
|
||||||
|
HOSTLOADLIBES_fit_check_sign$(SFX) := $(HOSTLOADLIBES_mkimage$(SFX))
|
||||||
|
|
||||||
hostprogs-$(CONFIG_EXYNOS5250) += mkexynosspl$(SFX)
|
hostprogs-$(CONFIG_EXYNOS5250) += mkexynosspl$(SFX)
|
||||||
hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl$(SFX)
|
hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl$(SFX)
|
||||||
HOSTCFLAGS_mkexynosspl$(SFX).o := -pedantic
|
HOSTCFLAGS_mkexynosspl$(SFX).o := -pedantic
|
||||||
|
|
Loading…
Reference in New Issue