boot/uboot: fix missing host-openssl for i.MX28 target
authorJulien Boibessot <julien.boibessot@armadeus.com>
Fri, 20 May 2016 04:57:24 +0000 (06:57 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Wed, 25 May 2016 15:09:22 +0000 (17:09 +0200)
commit0dca644e443c8f28bfe5aa1c98201dc3b49e1165
treeddb619272fa839c8d3de47c9d3476b0b129cce05
parentf9419d752de00a06acf1d02ad2bc18c023e851bf
boot/uboot: fix missing host-openssl for i.MX28 target

Building an U-Boot image for the i.MX23 or i.MX28 target requires to run the
bootloaders 'mxsimage' tool on the host. As mxsimage needs unconditionally
OpenSSL, building U-Boot for those targets fails if it is not available on
the host:

tools/mxsimage.c:18:25: fatal error: openssl/evp.h: No such file or directory
  #include <openssl/evp.h>

Add the required dependency 'host-openssl' to all the different U-Boot image
types used to build a bootloader image for an i.MX23/i.MX28 target.

Also pass HOST_CFLAGS and HOST_LDFLAGS to the U-Boot build process so the right
-I/-L options will be used to find OpenSSL.

Ported from the Armadeus project:
https://sourceforge.net/p/armadeus/mailman/message/33595402/

Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com>
[Jörg: port to recent Buildroot version]
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
boot/uboot/uboot.mk