[U-Boot] [PATCH] tools: remove unused ret

2018-01-18 Thread Jelle van der Waa
Remove unused ret from fw_env_flush. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- tools/env/fw_env.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index 18c2324d2f..ca5507d4d7 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw

[U-Boot] [PATCH v3 2/2] tools: kwbimage fix build with OpenSSL 1.1.x

2017-05-08 Thread Jelle van der Waa
The rsa_st struct has been made opaque in 1.1.x, add forward compatible code to access the n, e, d members of rsa_struct. EVP_MD_CTX_cleanup has been removed in 1.1.x and EVP_MD_CTX_reset should be called to reinitialise an already created structure. Signed-off-by: Jelle van der Waa <

[U-Boot] [PATCH v3 1/2] rsa: Fix build with OpenSSL 1.1.x

2017-05-08 Thread Jelle van der Waa
The rsa_st struct has been made opaque in 1.1.x, add forward compatible code to access the n, e, d members of rsa_struct. EVP_MD_CTX_cleanup has been removed in 1.1.x and EVP_MD_CTX_reset should be called to reinitialise an already created structure. --- lib/rsa/rsa-sign.c | 44

[U-Boot] [PATCH v3 0/2] Fix build with OpenSSL 1.1.x

2017-05-08 Thread Jelle van der Waa
reason my compiler didn't warn me about them being deprecated. - Switch SSL_library_init() to OPENSSL_init_ssl(0, NULL). Jelle van der Waa (2): rsa: Fix build with OpenSSL 1.1.x tools: kwbimage fix build with OpenSSL 1.1.x lib/rsa/rsa-sign.c | 44

[U-Boot] [PATCH v2 2/3] rsa: Fix deprecated warnings for OpenSSL 1.1.x

2017-04-04 Thread Jelle van der Waa
ERR_remove_thread_state is deprecated in OpenSSL 1.1.x and does not do anything anymore. Thread initialisation and deinitialisation is now handled by the OpenSSL library. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> Reviewed-by: Simon Glass <s...@chromium.org> --- lib/rsa/rs

[U-Boot] [PATCH v2 3/3] tools: kwbimage fix build with OpenSSL 1.1.x

2017-04-04 Thread Jelle van der Waa
The rsa_st struct has been made opaque in 1.1.x, add forward compatible code to access the n, e, d members of rsa_struct. EVP_MD_CTX_cleanup has been removed in 1.1.x and EVP_MD_CTX_reset should be called to reinitialise an already created structure. Signed-off-by: Jelle van der Waa <

[U-Boot] [PATCH v2 1/3] rsa: Fix build with OpenSSL 1.1.x

2017-04-04 Thread Jelle van der Waa
The rsa_st struct has been made opaque in 1.1.x, add forward compatible code to access the n, e, d members of rsa_struct. EVP_MD_CTX_cleanup has been removed in 1.1.x and EVP_MD_CTX_reset should be called to reinitialise an already created structure. Tested-by: Peter Robinson

Re: [U-Boot] Compile v2017.03 on a system where Python 3 is default

2017-03-30 Thread Jelle van der Waa
om ././include/compiler.h:19, > from ././include/libfdt_env.h:12, > from :0: > /usr/include/features.h:166:0: note: this is the location of the > previous definition > # define _XOPEN_SOURCE 700 > > mv _libfdt.so tools/_libfdt.so > HOSTCC tools/proftool > ... > > > -- > Stefan > ___ > U-Boot mailing list > U-Boot@lists.denx.de > https://lists.denx.de/listinfo/u-boot -- Jelle van der Waa ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] building cross_tools, _POSIX_C_SOURCE and _XOPEN_SOURCE are redefined

2017-03-28 Thread Jelle van der Waa
ry > poking around this weekend. but AFAIK, i haven't done anything out of > the ordinary with my python installation. The issue is that Python.h has to be included before the rest of the header files. As can be read in the Python documentation: "Note Since Python ma

[U-Boot] [PATCH] sunxi: Add maintainer of the NanoPi NEO Air

2017-03-03 Thread Jelle van der Waa
Add myself as maintainer of the NanoPi NEO Air board. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- board/sunxi/MAINTAINERS | 5 + 1 file changed, 5 insertions(+) diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS index 2321b8b08f..5ad40ab2a2 100644 --- a/board

Re: [U-Boot] [linux-sunxi] Re: [PATCH v2] sunxi: add NanoPi NEO Air defconfig

2017-03-01 Thread Jelle van der Waa
On 03/01/17 at 03:33pm, Chen-Yu Tsai wrote: > On Sat, Feb 25, 2017 at 4:26 PM, Jagan Teki <ja...@openedev.com> wrote: > > On Mon, Feb 13, 2017 at 1:22 PM, Maxime Ripard > > <maxime.rip...@free-electrons.com> wrote: > >> On Sun, Feb 12, 2017 at 04:21:40PM +0100

Re: [U-Boot] [PATCH 1/2] rsa: Fix build with OpenSSL 1.1.x

2017-02-14 Thread Jelle van der Waa
On 02/14/17 at 12:43pm, Peter Robinson wrote: > On Mon, Feb 13, 2017 at 9:57 AM, Peter Robinson <pbrobin...@gmail.com> wrote: > > On Mon, Feb 13, 2017 at 9:00 AM, Jelle van der Waa <je...@vdwaa.nl> wrote: > >> The rsa_st struct has been made opaque in 1.1.x, ad

[U-Boot] [PATCH 1/2] rsa: Fix build with OpenSSL 1.1.x

2017-02-13 Thread Jelle van der Waa
The rsa_st struct has been made opaque in 1.1.x, add forward compatible code to access the n, e, d members of rsa_struct. EVP_MD_CTX_cleanup has been removed in 1.1.x and EVP_MD_CTX_reset should be called to reinitialise an already created structure. --- lib/rsa/rsa-sign.c | 33

[U-Boot] [PATCH 2/2] rsa: Fix deprecated warnings for OpenSSL 1.1.x

2017-02-13 Thread Jelle van der Waa
ERR_remove_thread_state is deprecated in OpenSSL 1.1.x and does not do anything anymore. Thread initialisation and deinitialisation is now handled by the OpenSSL library. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- lib/rsa/rsa-sign.c | 8 ++-- 1 file changed, 2 insertions

[U-Boot] [PATCH v2] sunxi: add NanoPi NEO Air defconfig

2017-02-12 Thread Jelle van der Waa
Add support for the NanoPi NEO Air H3 board from friendlyarm.com . This board contains WiFi, Bluetooth, 8GB eMMC storage and 512 MB DDR3 ram. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- arch/arm/dts/Makefile| 3 +- arch/arm/dts/sun8i-h3-nanopi-neo-air.dt

Re: [U-Boot] [PATCH] sunxi: move CONFIG_SATAPWR to Kconfig option

2016-12-05 Thread Jelle van der Waa
Nov 25, 2016 at 09:12:30AM +0100, Hans de Goede wrote: > > > > > > > Hi, > > > > > > > > > > > > > > On 24-11-16 22:22, Maxime Ripard wrote: > > > > > > > > On Wed, Nov 23, 2016 at 07:28:16PM +0100, Jelle van der Wa

[U-Boot] [PATCH] sunxi: enable H3 EMAC for the nanopi neo

2016-12-05 Thread Jelle van der Waa
The nanopi already had the CONFIG_SUN8I_EMAC=y enabled in it's defconfig file, but was missing the the device tree entry. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- arch/arm/dts/sun8i-h3-nanopi-neo.dts | 11 +++ 1 file changed, 11 insertions(+) diff --git a/arch/a

[U-Boot] [PATCH] sunxi: move CONFIG_SATAPWR to Kconfig option

2016-11-23 Thread Jelle van der Waa
Introduce a new CONFIG_SATAPWR Kconfig option to replace the option in CONFIG_SYS_EXTRA_OPTIONS. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- board/sunxi/Kconfig| 7 +++ board/sunxi/board.c| 11 ++- configs/A10-OLi

[U-Boot] [PATCH] sunxi: Use the available Kconfig option for AHCI

2016-10-31 Thread Jelle van der Waa
Use the already available Kconfig option for AHCI. Tested on the BananaPi. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- configs/A10-OLinuXino-Lime_defconfig | 3 ++- configs/A20-OLinuXino-Lime2_defconfig | 3 ++- configs/A20-OLinuXino-Lime_defconfig | 3 ++- confi

[U-Boot] [PATCH] README: fix typo candiate -> candidate

2016-10-30 Thread Jelle van der Waa
Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 39a3042..7d6d4a5 100644 --- a/README +++ b/README @@ -127,7 +127,7 @@ releases in "stable" maintenance trees. Examples:

[U-Boot] [PATCH] doc: typo fix addess -> address

2016-09-14 Thread Jelle van der Waa
Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> --- doc/mkimage.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/mkimage.1 b/doc/mkimage.1 index ffa7d60..e883f07 100644 --- a/doc/mkimage.1 +++ b/doc/mkimage.1 @@ -70,7 +70,7 @@ Set compression type. Pa

[U-Boot] [PATCH v2] sunxi: power: add support for sy8106a driver

2016-02-23 Thread Jelle van der Waa
is selected by a pair of resistors and happens to be 1.2V on the Orange Pi PC and Plus. Signed-off-by: Jelle van der Waa <je...@vdwaa.nl> Signed-off-by: Hans de Goede <hdego...@redhat.com> Tested-by: Siarhei Siamashka <siarhei.siamas...@gmail.com> Acked-by: Siarhei Siamash