From: Marek Vasut <marek.vasut.n900@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 6/8] PXA: Voipac270 improvements
Date: Tue, 07 Sep 2010 23:30:16 +0200 [thread overview]
Message-ID: <1283895016.7386.5.camel@konomi> (raw)
In-Reply-To: <20100907211344.983B1153798@gemini.denx.de>
N900 again, sorry.
----- P?vodn? zpr?va -----
> Dear Marek Vasut,
>
> In message <1282296691-15910-6-git-send-email-marek.vasut@gmail.com> you
> wrote:
> > 128MB NOR module support.
> > Define __io to get harddrive working.
> > Fix saving of environment into OneNAND.
> > Boot from harddrive when possible.
> > Add missing MAINTAINERS entry.
> >
> > Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> > ---
> > Changes same as in PalmTC
> >
> > MAINTAINERS? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |? ? ? 1 +
> > MAKEALL? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |? ? ? 3 +-
> > Makefile? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |? ? ? 7 ++-
> > board/vpac270/Makefile? ? ? ? ? ? ? |? ? ? 7 +--
> > board/vpac270/lowlevel_init.S |? ? ? 1 -
> > board/vpac270/vpac270.c? ? ? ? ? ? |? ? 41 ++++++----------
> > include/configs/vpac270.h? ? ? ? |? 106
> > +++++++++++++++++++++++----------------- 7 files changed, 87
> > insertions(+), 79 deletions(-)
> >
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index 5d20dca..c35a277 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -800,6 +800,7 @@ Marek Vasut <marek.vasut@gmail.com>
> >
> > ??? palmld??? ??? xscale
> > ??? palmtc??? ??? xscale
> > +??? vpac270??? ??? xscale
> >
> > Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
> >
> > diff --git a/Makefile b/Makefile
> > index 4f1cb1b..3f2b304 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -2180,13 +2180,18 @@ trizepsiv_config??? :??? unconfig
> > ??? fi;
> > ??? @$(MKCONFIG) -n $@ -a trizepsiv arm pxa trizepsiv
> >
> > -vpac270_nor_config \
> > +vpac270_nor_256M_config \
> > +vpac270_nor_128M_config \
> > vpac270_onenand_config??? : unconfig
>
> Um... we don't accept such changes to the Makefile any more. Such
> configuration should be moved to the boards.cfg file instead.
I'm aware of this. Though I have to admit I don't know how to do it through boards.cfg. I will take a look when I get home (in about 1 hour). Or if you'd be so kind to point me in some direction?
Thanks
>
> ...
> > --- a/board/vpac270/Makefile
> > +++ b/board/vpac270/Makefile
> > @@ -1,10 +1,7 @@
> > -
> > #
> > -# (C) Copyright 2000
> > -# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
> > +# Voipac PXA270 Support
> > #
> > -# See file CREDITS for list of people who contributed to this
> > -# project.
> > +# Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
> > #
> > # This program is free software; you can redistribute it and/or
> > # modify it under the terms of the GNU General Public License as
> ...
> > diff --git a/board/vpac270/vpac270.c b/board/vpac270/vpac270.c
> > index 18e47e2..2d01e22 100644
> > --- a/board/vpac270/vpac270.c
> > +++ b/board/vpac270/vpac270.c
> > @@ -1,16 +1,7 @@
> > /*
> > - * (C) Copyright 2004
> > - * Robert Whaley, Applied Data Systems, Inc. rwhaley at applieddata.net
> > + * Voipac PXA270 Support
> > *
> > - * (C) Copyright 2002
> > - * Kyle Harris, Nexus Technologies, Inc. kharris at nexus-tech.net
> > - *
> > - * (C) Copyright 2002
> > - * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
> > - * Marius Groeger <mgroeger@sysgo.de>
> > - *
> > - * See file CREDITS for list of people who contributed to this
> > - * project.
> > + * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
>
> What makes you think it was legitimate to delete these old Copyright
> notices?
>
>
> 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
> HEALTH WARNING: Care Should Be Taken When Lifting This Product, Since
> Its Mass, and Thus Its Weight, Is Dependent on Its Velocity? Relative
> to the User.
next prev parent reply other threads:[~2010-09-07 21:30 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-10 4:50 [U-Boot] [PATCH 1/9] ARM: Define __raw_readX and __raw_writeX Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 2/9] PXA: pxafb: Add ACX517AKN support Marek Vasut
2010-08-10 21:45 ` Wolfgang Denk
2010-08-10 23:56 ` Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 1/8] " Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 2/8] common: Enable serial for PXA250 Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 3/8 v2] PXA: Palm Tungsten|C Support Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 4/8] PXA: pxafb: Add support for Sharp LQ038J7DH53 Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 5/8] PXA: Add initial Palm LifeDrive support Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 6/8] PXA: Voipac270 improvements Marek Vasut
2010-09-07 21:13 ` Wolfgang Denk
2010-09-07 21:30 ` Marek Vasut [this message]
2010-09-07 22:34 ` Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 7/8] PXA: Balloon3 board support Marek Vasut
2010-09-07 21:17 ` Wolfgang Denk
2010-09-07 21:27 ` Marek Vasut
2010-08-20 9:31 ` [U-Boot] [PATCH 8/8] PXA: Add missing MAINTAINERS entries Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 3/9] common: Enable serial for PXA250 Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 4/9] PXA: Palm Tungsten|C Support Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 5/9] PXA: pxafb: Add support for Sharp LQ038J7DH53 Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 6/9] PXA: Add initial Palm LifeDrive support Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 7/9] PXA: Voipac270 improvements Marek Vasut
2010-08-10 4:50 ` [U-Boot] [PATCH 8/9] PXA: Balloon3 board support Marek Vasut
2010-08-10 21:52 ` Wolfgang Denk
2010-08-10 4:50 ` [U-Boot] [PATCH 9/9] PXA: Add missing MAINTAINERS entries Marek Vasut
2010-08-10 21:48 ` Wolfgang Denk
2010-08-10 21:38 ` [U-Boot] [PATCH 1/9] ARM: Define __raw_readX and __raw_writeX Wolfgang Denk
2010-08-10 23:52 ` Marek Vasut
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1283895016.7386.5.camel@konomi \
--to=marek.vasut.n900@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox