Re: [U-Boot] Loading uImage into RAM

2014-05-06 Thread Abdullah YILDIZ
Hi Belisko, On Tue, May 6, 2014 at 12:34 PM, Belisko Marek wrote: > Hi Abdullah, > > On Tue, May 6, 2014 at 10:55 AM, Abdullah YILDIZ > wrote: >> I'm trying to understand how u-boot loads zImage into RAM. >> >> mkimage is called as >> >> mkimage

[U-Boot] Loading uImage into RAM

2014-05-06 Thread Abdullah YILDIZ
I'm trying to understand how u-boot loads zImage into RAM. mkimage is called as mkimage -A arm -O linux -T kernel -C none -a 0x80008000 -e 0x80008040 -d arch/arm/boot/zImage /bootImage/uImage Here, 'a' stands for load address and 'e' stands for entry point (64 bytes are used for wrapping?). Howe

Re: [U-Boot] show_boot_progress

2014-02-19 Thread Abdullah YILDIZ
llah, > > On Wed, 19 Feb 2014 15:14:42 +0200, Abdullah YILDIZ > wrote: > >> Hi Albert, >> >> > On Wed, Feb 19, 2014 at 12:32 PM, Albert ARIBAUD >> > wrote: >> > >> > Hi Abdullah, >> > >> > > I use u-boot version 1.

Re: [U-Boot] show_boot_progress

2014-02-19 Thread Abdullah YILDIZ
Hi Albert, > On Wed, Feb 19, 2014 at 12:32 PM, Albert ARIBAUD > wrote: > > Hi Abdullah, > > > I use u-boot version 1.3.3. > > Any reason to use a five-years-old release? > The development board I use supports u-boot version 1.3.3 and I couldn't manage to port the functions to newer releases of

[U-Boot] show_boot_progress

2014-02-19 Thread Abdullah YILDIZ
I use u-boot version 1.3.3. The function call __show_boot_progress is defined in common/main.c as void inline __show_boot_progress (int val) {} There are many calls to this function in particular locations with specific parameters. But it does nothing. What is the purpose of this? Since I'm not

Re: [U-Boot] u-boot - timestamp

2014-02-10 Thread Abdullah YILDIZ
Sorry for the missing detail. I want to measure how long a specific process takes. For example, [3814526.197336] message-1 [3814527.234145] message-2   abdullah On Monday, February 10, 2014 2:08 PM, Albert ARIBAUD wrote: Hi Abdullah, > >On Mon, 10 Feb 2014 03:25:51 -0800 (PST), Ab

[U-Boot] u-boot - timestamp

2014-02-10 Thread Abdullah YILDIZ
I have a custom board which uses u-boot-1.3.3. I want to add timestamp information during booting. Do I have to use a patch for this?   abdullah___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] u-boot compile error: Source object has EABI version 5, but target has EABI version 0

2014-02-05 Thread Abdullah YILDIZ
When I try to compile u-boot I get the following error: The error is explained in this link: http://www.denx.de/wiki/DULG/SourceObjectHasEABIVersion4ButTargetHasEABIVersion0 It works for another toolchain. However, I want to learn that if there is a way to compile it with the current toolchain