Re: [PATCH] x86: Update cbmem driver

2023-08-15 Thread Nable
On 15.08.2023 01:42, Simon Glass: > I believe the original intent was to indicate that the buffer had > overflowed. But prompted by your review I took a look at the coreboot > implementation and it now has an overflow flag. > > So I will send a v2 incorporating this. Thank you for this investigatio

Re: [U-Boot] ## Application terminated, rc = 0x1

2015-09-23 Thread Nable
Hi, > i want to boot a little kernel on ARM Cortex a9. > But the kernel crushes pretty early with the following u-boot output: > > ## Starting application at 0x0100 ... > ## Application terminated, rc = 0x1 What board do you use? This address may be used by something different than applicatio

Re: [U-Boot] Test

2015-04-25 Thread Nable
ge mailing list. Cheers, Nable. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Git clone using http or rsync broken

2015-02-21 Thread Nable
Hi! Rsync isn't mentioned here: http://git.denx.de/u-boot.git/ , this fact makes me think that rsync support isn't present. 2. > "git clone http://git.denx.de/u-boot.git"; just hangs with: > Cloning into 'u-boot'... U-Boot repo is very large, so it takes a lot of time and traffic to clone it. Ar

Re: [U-Boot] U-Boot gitweb

2015-02-01 Thread Nable
Hi! I can also see the same issue. It looks like some problem with permissions: """ Forbidden You don't have permission to access /gitweb.css on this server. Apache/2.2.22 (Debian) Server at git.denx.de Port 80 """ Error 403 is also returned for gitweb.js and git-logo.png

Re: [U-Boot] Disable tftp and access

2015-01-31 Thread Nable
Hi! I haven't tested this approach, but you can define the following variables in your board config (see include/configs/mimc200.h for example): #define CONFIG_SILENT_CONSOLE /* enable silent startup */ #define CONFIG_DISABLE_CONSOLE /* disable console */ #define CONFIG_SYS_DEVICE_NULLD

Re: [U-Boot] [PATCH] usb: gadget: pxa25x_udc: fix use-before-initialized bug

2015-01-08 Thread Nable
> You can use [PATCH RESEND], which is probably much clearer in expressing > the intent. You might add a short note just before the diffstat saying that > you only updated the SoB line and author to match the real deal, but didn't > change the patch contents. I've edited my patch and it's still app

Re: [U-Boot] [PATCH] usb: gadget: pxa25x_udc: fix use-before-initialized bug

2015-01-08 Thread Nable
Hi! > Can you please fix From: and Signed-off-by: fields Oh, it looks like I have to accept this requirement. Ok, I'll fix it. Should I also change tag in subject to '[PATCH v2]' in a fixed patch? Thank you for kind answer! Best regards, Alex Sadovsky. ___

[U-Boot] [PATCH] usb: gadget: pxa25x_udc: fix use-before-initialized bug

2015-01-07 Thread Nable
order of initialization. Signed-off-by: Nable --- drivers/usb/gadget/pxa25x_udc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/gadget/pxa25x_udc.c b/drivers/usb/gadget/pxa25x_udc.c index 8945c5b..d4460b2 100644 --- a/drivers/usb/gadget/pxa25x_udc.c +++ b/drivers/u