[PATCH] rsa: use pkcs11 uri as defined in rfc7512

2023-08-26 Thread Ayoub Zaki
pkcs11 : change engine uri to use full pk11-URI as defined in: https://www.rfc-editor.org/rfc/rfc7512.html Signed-off-by: Ayoub Zaki --- doc/uImage.FIT/signature.txt | 2 +- lib/rsa/rsa-sign.c | 12 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc

[PATCH v2] cmd: ubi: add a command to swap volumes

2021-09-09 Thread Ayoub Zaki
This commit adds the command ubi swap to swap an ubi volumes. The format of the command is: ubi swap . To enable this command, the option CMD_UBI_SWAPVOL must be selected. --- cmd/Kconfig | 8 cmd/ubi.c | 54 + 2 files changed, 62

[PATCH] cmd: ubi: add a command to swap volumes

2021-07-09 Thread Ayoub Zaki
This commit adds the command ubi swap to swap an ubi volumes. The format of the command is: ubi swap . To enable this command, the option CMD_UBI_SWAPVOL must be selected. Signed-off-by: Ayoub Zaki --- cmd/Kconfig | 8 cmd/ubi.c | 54

Re: [U-Boot] GCC5.x support for old u-boot version

2015-11-25 Thread Ayoub Zaki
Hello Jeroen, that fixed the build problem ! many thanks:-) Best regards, Ayoub 2015-11-25 10:54 GMT+01:00 Jeroen Hofstee <dasub...@myspectrum.nl>: > Hello Ayoub, > > > On 25-11-15 10:35, Ayoub Zaki wrote: > >> we have an am335x based custom board that use for ou

[U-Boot] GCC5.x support for old u-boot version

2015-11-25 Thread Ayoub Zaki
ror 2 Any chance to backport GCC5 support to old u-boot version ? Thank you for suggestions. Best regards, Ayoub Zaki ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Fwd: u-boot.img size limit for spl fat load ?

2015-01-19 Thread Ayoub Zaki
is not allocating enough memory to load u-boot.img but I can't find where this size limit is set and where I can change it. Cheers, Ayoub 2015-01-19 8:08 GMT+01:00 Albert ARIBAUD albert.u.b...@aribaud.net: Hello Ayoub, On Fri, 16 Jan 2015 15:42:37 +0100, Ayoub Zaki ayoub.z

Re: [U-Boot] Fwd: u-boot.img size limit for spl fat load ?

2015-01-19 Thread Ayoub Zaki
I checked the SPL Memory allocations : CONFIG_SYS_SPL_MALLOC_START=(CONFIG_SPL_BSS_START_ADDR + CONFIG_SPL_BSS_MAX_SIZE) CONFIG_SPL_TEXT_BASE=0x402F0400 CONFIG_SPL_BSS_MAX_SIZE=0x8 CONFIG_SPL_BSS_START_ADDR=0x80a0 My U-boot.img is arround 2.8MB I increased the CONFIG_SPL_BSS_MAX_SIZE to

Re: [U-Boot] Fwd: u-boot.img size limit for spl fat load ?

2015-01-19 Thread Ayoub Zaki
CONFIG_SYS_TEXT_BASE=0x8080 and CONFIG_SPL_BSS_START_ADDR=0x80a0 So the maximal size of u-boot to avoid a memory address colision is 0x20 = 2MB ! 2015-01-19 13:20 GMT+01:00 Ayoub Zaki ayoub.z...@googlemail.com: I checked the SPL Memory allocations : CONFIG_SYS_SPL_MALLOC_START

Re: [U-Boot] Fwd: u-boot.img size limit for spl fat load ?

2015-01-19 Thread Ayoub Zaki
I set TEXT_BASE to : #define CONFIG_SYS_TEXT_BASE0x8060 Now u-boot.img can be up to 4MB sized and it solved my problem :) Thank you very much for your help. 2015-01-19 13:25 GMT+01:00 Ayoub Zaki ayoub.z...@googlemail.com: CONFIG_SYS_TEXT_BASE=0x8080

[U-Boot] u-boot.img size limit for spl fat load ?

2015-01-16 Thread Ayoub Zaki
Hello list, I'm using u-boot-2014.10 and trying to build it with LCD support for the Beaglebone black to include a Boot logo image. It seems that spl hangs while fat loading a 2.8MB sized u-boot.img ! I reduced the the logo header file and rebuild u-boot, that worked for a 1.6MB sized

[U-Boot] u-boot.img size limit ?

2015-01-15 Thread Ayoub Zaki
Hello list, I'm using u-boot-2014.10 and trying to build it with LCD support for the Beaglebone black to include a Boot logo image. It seems that spl hangs while loading a 2.8MB sized u-boot.img ! I reduced the the logo header file and rebuild u-boot, that worked for a 1.6MB sized u-boot.img.