public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] v2013.10 failed build with jffs2 cmd
@ 2013-10-22 12:13 Wolfgang Denk
  2013-10-23  0:36 ` Chris Ruehl
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Denk @ 2013-10-22 12:13 UTC (permalink / raw)
  To: u-boot

Dear Chris Ruehl,

I wrote:

> If everything else fails, use "USE_PRIVATE_LIBGCC=y" on the make
> command line.

I mean: use "USE_PRIVATE_LIBGCC=yes" on the make command line. 


Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The human race is a race of cowards; and I am not  only  marching  in
that procession but carrying a banner.                   - Mark Twain

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] v2013.10 failed build with jffs2 cmd
  2013-10-22 12:13 [U-Boot] v2013.10 failed build with jffs2 cmd Wolfgang Denk
@ 2013-10-23  0:36 ` Chris Ruehl
  2013-10-23  1:44   ` Chris Ruehl
  2013-10-27  9:14   ` [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error Wolfgang Denk
  0 siblings, 2 replies; 11+ messages in thread
From: Chris Ruehl @ 2013-10-23  0:36 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

On Tuesday, October 22, 2013 08:13 PM, Wolfgang Denk wrote:
> Dear Chris Ruehl,
>
> I wrote:
>
>> If everything else fails, use "USE_PRIVATE_LIBGCC=y" on the make
>> command line.
>
> I mean: use "USE_PRIVATE_LIBGCC=yes" on the make command line.

after I set this option the build failed for

/uboot.d/u-boot-git/arch/arm/lib/libgcc.o -Map u-boot.map -o u-boot
fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
/opt/cross_build/uboot.d/u-boot-git/fs/jffs2/jffs2_1pass.c:1441: undefined 
reference to `__aeabi_uldivmod'

I mentioned this reference as "root of the evil" before :-)

Chris

>
>
> Best regards,
>
> Wolfgang Denk
>

-- 
GTSYS Limited RFID Technology
A01 24/F Gold King Industrial Bld
35-41 Tai Lin Pai Road, Kwai Chung, Hong Kong
Fax (852) 8167 4060 - Tel (852) 3598 9488

Disclaimer: http://www.gtsys.com.hk/email/classified.html

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] v2013.10 failed build with jffs2 cmd
  2013-10-23  0:36 ` Chris Ruehl
@ 2013-10-23  1:44   ` Chris Ruehl
  2013-10-27  9:14   ` [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error Wolfgang Denk
  1 sibling, 0 replies; 11+ messages in thread
From: Chris Ruehl @ 2013-10-23  1:44 UTC (permalink / raw)
  To: u-boot

FYI

On Wednesday, October 23, 2013 08:36 AM, Chris Ruehl wrote:
> Hi Wolfgang,
>
> On Tuesday, October 22, 2013 08:13 PM, Wolfgang Denk wrote:
>> Dear Chris Ruehl,
>>
>> I wrote:
>>
>>> If everything else fails, use "USE_PRIVATE_LIBGCC=y" on the make
>>> command line.
>>
>> I mean: use "USE_PRIVATE_LIBGCC=yes" on the make command line.
>
> after I set this option the build failed for
>
> /uboot.d/u-boot-git/arch/arm/lib/libgcc.o -Map u-boot.map -o u-boot
> fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
> /opt/cross_build/uboot.d/u-boot-git/fs/jffs2/jffs2_1pass.c:1441:
> undefined reference to `__aeabi_uldivmod'
>
> I mentioned this reference as "root of the evil" before :-)
>
> Chris
>
>>
>>
>> Best regards,
>>
>> Wolfgang Denk
>>
>

just to let you know, I open a thread on the linaro tool-chain mail list
for this problem.

Chris

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-23  0:36 ` Chris Ruehl
  2013-10-23  1:44   ` Chris Ruehl
@ 2013-10-27  9:14   ` Wolfgang Denk
  2013-10-27  9:46     ` Chris Ruehl
                       ` (2 more replies)
  1 sibling, 3 replies; 11+ messages in thread
From: Wolfgang Denk @ 2013-10-27  9:14 UTC (permalink / raw)
  To: u-boot

Building boards that have JFFS2 support enabled will fail when using
U-Boot's builtin GCC library, for example like this:

USE_PRIVATE_LIBGCC=yes ./MAKEALL omap3_evm
...
fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
fs/jffs2/jffs2_1pass.c:1441: undefined reference to `__aeabi_uldivmod'

This is caused by a u64 / u32 division in jffs2_1pass.c; the problem
can be avoided by using do_div() instead of plain division.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Reported-by: Chris Ruehl <chris.ruehl@gtsys.com.hk>
Cc: Chris Ruehl <chris.ruehl@gtsys.com.hk>

---
 fs/jffs2/jffs2_1pass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
index c856983..a7dbe79 100644
--- a/fs/jffs2/jffs2_1pass.c
+++ b/fs/jffs2/jffs2_1pass.c
@@ -1438,7 +1438,7 @@ jffs2_1pass_build_lists(struct part_info * part)
 {
 	struct b_lists *pL;
 	struct jffs2_unknown_node *node;
-	u32 nr_sectors = part->size/part->sector_size;
+	u32 nr_sectors = do_div(part->size, part->sector_size);
 	u32 i;
 	u32 counter4 = 0;
 	u32 counterF = 0;
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-27  9:14   ` [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error Wolfgang Denk
@ 2013-10-27  9:46     ` Chris Ruehl
  2013-10-27 10:01       ` Wolfgang Denk
  2013-10-27 18:17     ` Daniel Schwierzeck
  2013-10-27 20:07     ` Wolfgang Denk
  2 siblings, 1 reply; 11+ messages in thread
From: Chris Ruehl @ 2013-10-27  9:46 UTC (permalink / raw)
  To: u-boot

Wolfgang,

GOOD Catch!

On Sunday, October 27, 2013 05:14 PM, Wolfgang Denk wrote:
> Building boards that have JFFS2 support enabled will fail when using
> U-Boot's builtin GCC library, for example like this:
>
> USE_PRIVATE_LIBGCC=yes ./MAKEALL omap3_evm
> ...
> fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
> fs/jffs2/jffs2_1pass.c:1441: undefined reference to `__aeabi_uldivmod'
>
> This is caused by a u64 / u32 division in jffs2_1pass.c; the problem
> can be avoided by using do_div() instead of plain division.
>
> Signed-off-by: Wolfgang Denk<wd@denx.de>
> Reported-by: Chris Ruehl<chris.ruehl@gtsys.com.hk>
> Cc: Chris Ruehl<chris.ruehl@gtsys.com.hk>
>
> ---
>   fs/jffs2/jffs2_1pass.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
> index c856983..a7dbe79 100644
> --- a/fs/jffs2/jffs2_1pass.c
> +++ b/fs/jffs2/jffs2_1pass.c
> @@ -1438,7 +1438,7 @@ jffs2_1pass_build_lists(struct part_info * part)
>   {
>   	struct b_lists *pL;
>   	struct jffs2_unknown_node *node;
> -	u32 nr_sectors = part->size/part->sector_size;
> +	u32 nr_sectors = do_div(part->size, part->sector_size);
>   	u32 i;
>   	u32 counter4 = 0;
>   	u32 counterF = 0;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-27  9:46     ` Chris Ruehl
@ 2013-10-27 10:01       ` Wolfgang Denk
  2013-10-27 23:50         ` Chris Ruehl
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Denk @ 2013-10-27 10:01 UTC (permalink / raw)
  To: u-boot

Dear Chris,

In message <526CE0F6.8020408@gtsys.com.hk> you wrote:
> 
> GOOD Catch!

Thanks :-)

It would be nice if you could run an actual test on your hardware,and
then eventually even provide an Tested-by: ?

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If a train station is a place where a train stops,
                                           then what's a workstation?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-27  9:14   ` [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error Wolfgang Denk
  2013-10-27  9:46     ` Chris Ruehl
@ 2013-10-27 18:17     ` Daniel Schwierzeck
  2013-10-27 20:07     ` Wolfgang Denk
  2 siblings, 0 replies; 11+ messages in thread
From: Daniel Schwierzeck @ 2013-10-27 18:17 UTC (permalink / raw)
  To: u-boot

2013/10/27 Wolfgang Denk <wd@denx.de>:
> Building boards that have JFFS2 support enabled will fail when using
> U-Boot's builtin GCC library, for example like this:
>
> USE_PRIVATE_LIBGCC=yes ./MAKEALL omap3_evm
> ...
> fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
> fs/jffs2/jffs2_1pass.c:1441: undefined reference to `__aeabi_uldivmod'

I recently noticed a similar problem on MIPS too:

fs/jffs2/libjffs2.o: In function `jffs2_get_list':
jffs2_1pass.c:(.text.jffs2_get_list+0x5c): undefined reference to `__udivdi3'

Your patch solves it, thanks.
Tested-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>

>
> This is caused by a u64 / u32 division in jffs2_1pass.c; the problem
> can be avoided by using do_div() instead of plain division.
>
> Signed-off-by: Wolfgang Denk <wd@denx.de>
> Reported-by: Chris Ruehl <chris.ruehl@gtsys.com.hk>
> Cc: Chris Ruehl <chris.ruehl@gtsys.com.hk>
>
> ---
>  fs/jffs2/jffs2_1pass.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
> index c856983..a7dbe79 100644
> --- a/fs/jffs2/jffs2_1pass.c
> +++ b/fs/jffs2/jffs2_1pass.c
> @@ -1438,7 +1438,7 @@ jffs2_1pass_build_lists(struct part_info * part)
>  {
>         struct b_lists *pL;
>         struct jffs2_unknown_node *node;
> -       u32 nr_sectors = part->size/part->sector_size;
> +       u32 nr_sectors = do_div(part->size, part->sector_size);
>         u32 i;
>         u32 counter4 = 0;
>         u32 counterF = 0;
> --
> 1.8.3.1
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot



-- 
Best regards,
Daniel

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-27  9:14   ` [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error Wolfgang Denk
  2013-10-27  9:46     ` Chris Ruehl
  2013-10-27 18:17     ` Daniel Schwierzeck
@ 2013-10-27 20:07     ` Wolfgang Denk
  2013-10-28  2:22       ` Chris Ruehl
  2 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Denk @ 2013-10-27 20:07 UTC (permalink / raw)
  To: u-boot

In message <1382865251-17302-1-git-send-email-wd@denx.de> I wrote:
> Building boards that have JFFS2 support enabled will fail when using
> U-Boot's builtin GCC library, for example like this:
> 
> USE_PRIVATE_LIBGCC=yes ./MAKEALL omap3_evm
> ...
> fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
> fs/jffs2/jffs2_1pass.c:1441: undefined reference to `__aeabi_uldivmod'
> 
> This is caused by a u64 / u32 division in jffs2_1pass.c; the problem
> can be avoided by using do_div() instead of plain division.
> 
> Signed-off-by: Wolfgang Denk <wd@denx.de>
> Reported-by: Chris Ruehl <chris.ruehl@gtsys.com.hk>
> Cc: Chris Ruehl <chris.ruehl@gtsys.com.hk>

I would like to withdraw this patch.

It appears nobody has been running a MAKEALL with USE_PRIVATE_LIBGCC
enabled for a long, long time.  There are a number of other places
that show similar problems.  Instead of fixing these one by one, I
think we should rather bundle this.

I'm working on a more complete patch (or patch series).

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Save yourself!  Reboot in 5 seconds!

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-27 10:01       ` Wolfgang Denk
@ 2013-10-27 23:50         ` Chris Ruehl
  0 siblings, 0 replies; 11+ messages in thread
From: Chris Ruehl @ 2013-10-27 23:50 UTC (permalink / raw)
  To: u-boot

Wolfgang,

On Sunday, October 27, 2013 06:01 PM, Wolfgang Denk wrote:
> Dear Chris,
>
> In message<526CE0F6.8020408@gtsys.com.hk>  you wrote:
>>
>> GOOD Catch!
>
> Thanks :-)
>
> It would be nice if you could run an actual test on your hardware,and
> then eventually even provide an Tested-by: ?

Yes, I will run the test, later today.


>
> Best regards,
>
> Wolfgang Denk
>

-- 
GTSYS Limited RFID Technology
A01 24/F Gold King Industrial Bld
35-41 Tai Lin Pai Road, Kwai Chung, Hong Kong
Fax (852) 8167 4060 - Tel (852) 3598 9488

Disclaimer: http://www.gtsys.com.hk/email/classified.html

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-27 20:07     ` Wolfgang Denk
@ 2013-10-28  2:22       ` Chris Ruehl
  2013-11-22  4:55         ` Gupta, Pekon
  0 siblings, 1 reply; 11+ messages in thread
From: Chris Ruehl @ 2013-10-28  2:22 UTC (permalink / raw)
  To: u-boot

Wolfgang,

good morning.

On Monday, October 28, 2013 04:07 AM, Wolfgang Denk wrote:
> In message <1382865251-17302-1-git-send-email-wd@denx.de> I wrote:
>> Building boards that have JFFS2 support enabled will fail when using
>> U-Boot's builtin GCC library, for example like this:
>>
>> USE_PRIVATE_LIBGCC=yes ./MAKEALL omap3_evm
>> ...
>> fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
>> fs/jffs2/jffs2_1pass.c:1441: undefined reference to `__aeabi_uldivmod'
>>
>> This is caused by a u64 / u32 division in jffs2_1pass.c; the problem
>> can be avoided by using do_div() instead of plain division.
>>
>> Signed-off-by: Wolfgang Denk <wd@denx.de>
>> Reported-by: Chris Ruehl <chris.ruehl@gtsys.com.hk>
>> Cc: Chris Ruehl <chris.ruehl@gtsys.com.hk>
> I would like to withdraw this patch.
>
> It appears nobody has been running a MAKEALL with USE_PRIVATE_LIBGCC
> enabled for a long, long time.  There are a number of other places
> that show similar problems.  Instead of fixing these one by one, I
> think we should rather bundle this.
>
> I'm working on a more complete patch (or patch series).
>
> Best regards,
>
> Wolfgang Denk
>
The test of your patch works with the linaro 2013.09 tool chain.

I had to add the missing header only
#include <div64.h> which is required for the build.

diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
index c856983..e6b50de 100644
--- a/fs/jffs2/jffs2_1pass.c
+++ b/fs/jffs2/jffs2_1pass.c
@@ -121,6 +121,7 @@
  #include <jffs2/jffs2_1pass.h>
  #include <linux/compat.h>
  #include <asm/errno.h>
+#include <div64.h>

  #include "jffs2_private.h"

@@ -1438,7 +1439,7 @@ jffs2_1pass_build_lists(struct part_info * part)
  {
         struct b_lists *pL;
         struct jffs2_unknown_node *node;
-       u32 nr_sectors = part->size/part->sector_size;
+       u32 nr_sectors = do_div(part->size,part->sector_size);
         u32 i;
         u32 counter4 = 0;
         u32 counterF = 0;

cd /opt/cross_build/uboot.d/u-boot-git/spl/ && 
arm-linux-gnueabihf-ld.bfd  -T 
/opt/cross_build/uboot.d/u-boot-git/spl/u-boot-spl.lds --gc-sections 
--gc-sections -Bstatic -Ttext 0xa0000000 arch/arm/cpu/arm926ejs/start.o 
--start-group arch/arm/cpu/arm926ejs/libarm926ejs.o 
arch/arm/cpu/arm926ejs/mx27/libmx27.o 
arch/arm/imx-common/libimx-common.o arch/arm/lib/libarm.o 
board/gtsys/common/libgtsys.o board/gtsys/mx27gtsir/libmx27gtsir.o 
drivers/mtd/nand/libnand.o --end-group 
/opt/cross_build/uboot.d/u-boot-git/spl/arch/arm/lib/eabi_compat.o 
/opt/cross_build/uboot.d/u-boot-git/spl/arch/arm/lib/libgcc.o -Map 
u-boot-spl.map -o u-boot-spl
arm-linux-gnueabihf-objcopy --gap-fill=0xff -O binary 
/opt/cross_build/uboot.d/u-boot-git/spl/u-boot-spl 
/opt/cross_build/uboot.d/u-boot-git/spl/u-boot-spl.bin
make[1]: Leaving directory `/opt/cross_build/uboot.d/u-boot-git/spl'
arm-linux-gnueabihf-objcopy --gap-fill=0xff --pad-to=0x800 -I binary -O 
binary spl/u-boot-spl.bin spl/u-boot-spl-pad.bin; cat 
spl/u-boot-spl-pad.bin u-boot.bin > u-boot-with-spl.bin; rm 
spl/u-boot-spl-pad.bin


Regards
Chris

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error
  2013-10-28  2:22       ` Chris Ruehl
@ 2013-11-22  4:55         ` Gupta, Pekon
  0 siblings, 0 replies; 11+ messages in thread
From: Gupta, Pekon @ 2013-11-22  4:55 UTC (permalink / raw)
  To: u-boot

> From: u-boot-bounces at lists.denx.de [mailto:u-boot-
> Wolfgang,
> 
> good morning.
> 
> On Monday, October 28, 2013 04:07 AM, Wolfgang Denk wrote:
> > In message <1382865251-17302-1-git-send-email-wd@denx.de> I wrote:
> >> Building boards that have JFFS2 support enabled will fail when using
> >> U-Boot's builtin GCC library, for example like this:
> >>
> >> USE_PRIVATE_LIBGCC=yes ./MAKEALL omap3_evm
> >> ...
> >> fs/jffs2/libjffs2.o: In function `jffs2_1pass_build_lists':
> >> fs/jffs2/jffs2_1pass.c:1441: undefined reference to `__aeabi_uldivmod'
> >>
> >> This is caused by a u64 / u32 division in jffs2_1pass.c; the problem
> >> can be avoided by using do_div() instead of plain division.
> >>
> >> Signed-off-by: Wolfgang Denk <wd@denx.de>
> >> Reported-by: Chris Ruehl <chris.ruehl@gtsys.com.hk>
> >> Cc: Chris Ruehl <chris.ruehl@gtsys.com.hk>
> > I would like to withdraw this patch.
> >
> > It appears nobody has been running a MAKEALL with
> USE_PRIVATE_LIBGCC
> > enabled for a long, long time.  There are a number of other places
> > that show similar problems.  Instead of fixing these one by one, I
> > think we should rather bundle this.
> >
> > I'm working on a more complete patch (or patch series).
> >
> > Best regards,
> >
> > Wolfgang Denk
> >
> The test of your patch works with the linaro 2013.09 tool chain.
> 
> I had to add the missing header only
> #include <div64.h> which is required for the build.
> 
> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
> index c856983..e6b50de 100644
> --- a/fs/jffs2/jffs2_1pass.c
> +++ b/fs/jffs2/jffs2_1pass.c
> @@ -121,6 +121,7 @@
>   #include <jffs2/jffs2_1pass.h>
>   #include <linux/compat.h>
>   #include <asm/errno.h>
> +#include <div64.h>
> 
>   #include "jffs2_private.h"
> 
> @@ -1438,7 +1439,7 @@ jffs2_1pass_build_lists(struct part_info * part)
>   {
>          struct b_lists *pL;
>          struct jffs2_unknown_node *node;
> -       u32 nr_sectors = part->size/part->sector_size;
> +       u32 nr_sectors = do_div(part->size,part->sector_size);
>          u32 i;
>          u32 counter4 = 0;
>          u32 counterF = 0;
> 

Thanks for fixing this..
Tested-by: Pekon Gupta <pekon@ti.com>

Please merge this soon, so that ./MAKEALL is clean.

With regards, pekon

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-11-22  4:55 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-22 12:13 [U-Boot] v2013.10 failed build with jffs2 cmd Wolfgang Denk
2013-10-23  0:36 ` Chris Ruehl
2013-10-23  1:44   ` Chris Ruehl
2013-10-27  9:14   ` [U-Boot] [PATCH] JFFS2: Fix undefined reference to `__aeabi_uldivmod' error Wolfgang Denk
2013-10-27  9:46     ` Chris Ruehl
2013-10-27 10:01       ` Wolfgang Denk
2013-10-27 23:50         ` Chris Ruehl
2013-10-27 18:17     ` Daniel Schwierzeck
2013-10-27 20:07     ` Wolfgang Denk
2013-10-28  2:22       ` Chris Ruehl
2013-11-22  4:55         ` Gupta, Pekon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox