* [U-Boot-Users] [GIT PULL] [ARM] Pleasepullfromgit://www.denx.de/git/u-boot-arm.git
@ 2008-01-08 15:12 Peter Pearse
2008-01-09 10:36 ` Wolfgang Denk
0 siblings, 1 reply; 3+ messages in thread
From: Peter Pearse @ 2008-01-08 15:12 UTC (permalink / raw)
To: u-boot
Wolfgang
Please pull from git://www.denx.de/git/u-boot-arm.git
This is the apollon port
- tested on apollon by Kyungmin Park
- MAKEALL tested by Peter Pearse
Signed-off-by: Peter Pearse <peter.pearse@arm.com>
Signed-off-by: Kyungmin Park <kmpark@infradead.org>
Regards
Peter
---
The following changes since commit 5c740711f0ea5b51414b341b71597c4a0751be74:
Jon Loeliger (1):
8610: Move include of config.h earlier.
are found in the git repository at:
git://www.denx.de/git/u-boot-arm.git
Peter Pearse (5):
Add apollon board support
Merge with git://www.denx.de/git/u-boot.git
Correction patch
Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
Merge with git://www.denx.de/git/u-boot.git
MAKEALL | 1 +
Makefile | 5 +-
board/apollon/Makefile | 48 +++
board/apollon/apollon.c | 472
+++++++++++++++++++++++++++++++
board/apollon/config.mk | 25 ++
board/apollon/lowlevel_init.S | 337 ++++++++++++++++++++++
board/apollon/mem.c | 235 +++++++++++++++
board/apollon/mem.h | 170 +++++++++++
board/apollon/sys_info.c | 403 ++++++++++++++++++++++++++
board/apollon/u-boot.lds | 63 ++++
common/env_onenand.c | 4 +-
include/asm-arm/arch-arm1136/mux.h | 18 ++
include/asm-arm/arch-arm1136/omap2420.h | 33 ++-
include/asm-arm/mach-types.h | 13 +
include/configs/apollon.h | 238 ++++++++++++++++
15 files changed, 2058 insertions(+), 7 deletions(-)
create mode 100644 board/apollon/Makefile
create mode 100644 board/apollon/apollon.c
create mode 100644 board/apollon/config.mk
create mode 100644 board/apollon/lowlevel_init.S
create mode 100644 board/apollon/mem.c
create mode 100644 board/apollon/mem.h
create mode 100644 board/apollon/sys_info.c
create mode 100644 board/apollon/u-boot.lds
create mode 100755 include/configs/apollon.h
---
^ permalink raw reply [flat|nested] 3+ messages in thread* [U-Boot-Users] [GIT PULL] [ARM] Pleasepullfromgit://www.denx.de/git/u-boot-arm.git
2008-01-08 15:12 [U-Boot-Users] [GIT PULL] [ARM] Pleasepullfromgit://www.denx.de/git/u-boot-arm.git Peter Pearse
@ 2008-01-09 10:36 ` Wolfgang Denk
2008-01-09 10:39 ` Peter Pearse
0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Denk @ 2008-01-09 10:36 UTC (permalink / raw)
To: u-boot
Dear Peter,
in message <000001c85208$e6725e10$9a4d010a@Emea.Arm.com> you wrote:
>
> Please pull from git://www.denx.de/git/u-boot-arm.git
>
> This is the apollon port
> - tested on apollon by Kyungmin Park
> - MAKEALL tested by Peter Pearse
Done, thanks.
But please pay more attention to the Coding style. There was C++
comments in include/configs/apollon.h, trailing white space in
include/configs/apollon.h, indentation not by TABs in
board/apollon/lowlevel_init.S etc. ...
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"I'm not a god, I was misquoted." - Lister, Red Dwarf
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot-Users] [GIT PULL] [ARM] Pleasepullfromgit://www.denx.de/git/u-boot-arm.git
2008-01-09 10:36 ` Wolfgang Denk
@ 2008-01-09 10:39 ` Peter Pearse
0 siblings, 0 replies; 3+ messages in thread
From: Peter Pearse @ 2008-01-09 10:39 UTC (permalink / raw)
To: u-boot
Thanks
I'll try harder next time....
Peter
> -----Original Message-----
> From: wd at denx.de [mailto:wd at denx.de]
> Sent: 09 January 2008 10:37
> To: Peter Pearse
> Cc: u-boot-users at lists.sourceforge.net; Kyungmin Park
> Subject: Re: [U-Boot-Users] [GIT PULL] [ARM]
> Pleasepullfromgit://www.denx.de/git/u-boot-arm.git
>
> Dear Peter,
>
> in message <000001c85208$e6725e10$9a4d010a@Emea.Arm.com> you wrote:
> >
> > Please pull from git://www.denx.de/git/u-boot-arm.git
> >
> > This is the apollon port
> > - tested on apollon by Kyungmin Park
> > - MAKEALL tested by Peter Pearse
>
> Done, thanks.
>
> But please pay more attention to the Coding style. There was
> C++ comments in include/configs/apollon.h, trailing white
> space in include/configs/apollon.h, indentation not by TABs
> in board/apollon/lowlevel_init.S etc. ...
>
> Best regards,
>
> Wolfgang Denk
>
> --
> Software Engineering: Embedded and Realtime Systems, Embedded Linux
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
> "I'm not a god, I was misquoted." - Lister, Red Dwarf
>
--
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-01-09 10:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-08 15:12 [U-Boot-Users] [GIT PULL] [ARM] Pleasepullfromgit://www.denx.de/git/u-boot-arm.git Peter Pearse
2008-01-09 10:36 ` Wolfgang Denk
2008-01-09 10:39 ` Peter Pearse
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.