* [U-Boot] LPC2468 again
@ 2010-05-11 12:07 Remco Poelstra
2010-05-11 12:25 ` Anatolij Gustschin
0 siblings, 1 reply; 6+ messages in thread
From: Remco Poelstra @ 2010-05-11 12:07 UTC (permalink / raw)
To: u-boot
Hi all,
It's been a while since I was last on this list. Due to a lot of
uncertainties in the codebase and a time shortage on my side, I decided
that it was better to wait a while to try to get LPC2468 support in
u-boot. I do at least have a lot more time now.
I would like to have the code added (and accepted in git) in smaller blocks:
1. general startup code
2. a minimal board example
3. external flash support
4. I2C support
5. Ethernet support
I hope you agree with this split up in manageable chunks.
Currently I've ported the code to the latest git version. It compiles
more or less, except for the following error:
/usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_divdi3.o):(.ARM.exidx+0x0):
undefined reference to `__aeabi_unwind_cpp_pr0'
/usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_udivdi3.o):(.ARM.exidx+0x0):
undefined reference to `__aeabi_unwind_cpp_pr0'
How can I fix that? It seems it's the last small problem before I can
send a patch set for the startup code.
Kind regards,
Remco Poelsta
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] LPC2468 again
2010-05-11 12:07 [U-Boot] LPC2468 again Remco Poelstra
@ 2010-05-11 12:25 ` Anatolij Gustschin
2010-05-11 12:40 ` Remco Poelstra
0 siblings, 1 reply; 6+ messages in thread
From: Anatolij Gustschin @ 2010-05-11 12:25 UTC (permalink / raw)
To: u-boot
On Tue, 11 May 2010 14:07:14 +0200
Remco Poelstra <remco.poelstra@duran-audio.com> wrote:
...
> Currently I've ported the code to the latest git version. It compiles
> more or less, except for the following error:
> /usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_divdi3.o):(.ARM.exidx+0x0):
> undefined reference to `__aeabi_unwind_cpp_pr0'
> /usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_udivdi3.o):(.ARM.exidx+0x0):
> undefined reference to `__aeabi_unwind_cpp_pr0'
>
> How can I fix that? It seems it's the last small problem before I can
> send a patch set for the startup code.
Try to apply this patch
http://lists.denx.de/pipermail/u-boot/2010-May/071363.html
Best regards,
Anatolij
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] LPC2468 again
2010-05-11 12:25 ` Anatolij Gustschin
@ 2010-05-11 12:40 ` Remco Poelstra
2010-05-11 12:45 ` Anatolij Gustschin
0 siblings, 1 reply; 6+ messages in thread
From: Remco Poelstra @ 2010-05-11 12:40 UTC (permalink / raw)
To: u-boot
On 11-05-10 14:25, Anatolij Gustschin wrote:
> On Tue, 11 May 2010 14:07:14 +0200
> Remco Poelstra<remco.poelstra@duran-audio.com> wrote:
>
> ...
>
>> Currently I've ported the code to the latest git version. It compiles
>> more or less, except for the following error:
>> /usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_divdi3.o):(.ARM.exidx+0x0):
>> undefined reference to `__aeabi_unwind_cpp_pr0'
>> /usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_udivdi3.o):(.ARM.exidx+0x0):
>> undefined reference to `__aeabi_unwind_cpp_pr0'
>>
>> How can I fix that? It seems it's the last small problem before I can
>> send a patch set for the startup code.
>>
> Try to apply this patch
>
> http://lists.denx.de/pipermail/u-boot/2010-May/071363.html
>
> Best regards,
> Anatolij
>
>
Thanks, this works. Why isn't this included in u-boot by default?
Kind regards,
Remco Poelstra
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] LPC2468 again
2010-05-11 12:40 ` Remco Poelstra
@ 2010-05-11 12:45 ` Anatolij Gustschin
2010-05-11 13:14 ` Remco Poelstra
0 siblings, 1 reply; 6+ messages in thread
From: Anatolij Gustschin @ 2010-05-11 12:45 UTC (permalink / raw)
To: u-boot
On Tue, 11 May 2010 14:40:30 +0200
Remco Poelstra <remco.poelstra@duran-audio.com> wrote:
...
> >> /usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_udivdi3.o):(.ARM.exidx+0x0):
> >> undefined reference to `__aeabi_unwind_cpp_pr0'
> >>
> >> How can I fix that? It seems it's the last small problem before I can
> >> send a patch set for the startup code.
> >>
> > Try to apply this patch
> >
> > http://lists.denx.de/pipermail/u-boot/2010-May/071363.html
> >
> > Best regards,
> > Anatolij
> >
> >
> Thanks, this works. Why isn't this included in u-boot by default?
This patch is quite new and I suppose it will be included soon.
Best regards,
Anatolij
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] LPC2468 again
2010-05-11 12:45 ` Anatolij Gustschin
@ 2010-05-11 13:14 ` Remco Poelstra
2010-05-11 19:52 ` Wolfgang Denk
0 siblings, 1 reply; 6+ messages in thread
From: Remco Poelstra @ 2010-05-11 13:14 UTC (permalink / raw)
To: u-boot
On 11-05-10 14:45, Anatolij Gustschin wrote:
> On Tue, 11 May 2010 14:40:30 +0200
> Remco Poelstra<remco.poelstra@duran-audio.com> wrote:
> ...
>
>>>> /usr/local/ELDK/usr/bin/../lib/gcc/arm-linux-gnueabi/4.2.2/soft-float/libgcc.a(_udivdi3.o):(.ARM.exidx+0x0):
>>>> undefined reference to `__aeabi_unwind_cpp_pr0'
>>>>
>>>> How can I fix that? It seems it's the last small problem before I can
>>>> send a patch set for the startup code.
>>>>
>>>>
>>> Try to apply this patch
>>>
>>> http://lists.denx.de/pipermail/u-boot/2010-May/071363.html
>>>
>>> Best regards,
>>> Anatolij
>>>
>>>
>>>
>> Thanks, this works. Why isn't this included in u-boot by default?
>>
> This patch is quite new and I suppose it will be included soon.
>
I see, I thought it would be in git already.
Regards,
Remco Poelstra
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] LPC2468 again
2010-05-11 13:14 ` Remco Poelstra
@ 2010-05-11 19:52 ` Wolfgang Denk
0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2010-05-11 19:52 UTC (permalink / raw)
To: u-boot
Dear Remco Poelstra,
In message <4BE95821.5000600@duran-audio.com> you wrote:
>
> >> Thanks, this works. Why isn't this included in u-boot by default?
> >>
> > This patch is quite new and I suppose it will be included soon.
>
> I see, I thought it would be in git already.
We normally wait a few days to allow for code review and
success/failure reports.
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 mind ordinarily operates at only ten percent of its capaci-
ty - the rest is overhead for the operating system.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-05-11 19:52 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-11 12:07 [U-Boot] LPC2468 again Remco Poelstra
2010-05-11 12:25 ` Anatolij Gustschin
2010-05-11 12:40 ` Remco Poelstra
2010-05-11 12:45 ` Anatolij Gustschin
2010-05-11 13:14 ` Remco Poelstra
2010-05-11 19:52 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox