From: Tom Rini <trini@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 3/3] common: Add .u_boot_list into all linker files
Date: Mon, 24 Sep 2012 11:07:52 -0700 [thread overview]
Message-ID: <20120924180752.GG1797@bill-the-cat> (raw)
In-Reply-To: <CANr=Z=ayYjhMY1PDvXZLyw7n1DOJPK=KV+w6hN7MA9COtttc_A@mail.gmail.com>
On Mon, Sep 24, 2012 at 12:23:10PM -0500, Joe Hershberger wrote:
> Hi Tom,
>
> On Mon, Sep 24, 2012 at 12:18 PM, Tom Rini <trini@ti.com> wrote:
> > On Mon, Sep 24, 2012 at 07:09:35PM +0200, Marek Vasut wrote:
> >> Dear Tom Rini,
> >>
> >> > On Mon, Sep 24, 2012 at 06:53:19PM +0200, Marek Vasut wrote:
> >> > > Dear Joe Hershberger,
> >> > >
> >> > > [...]
> >> > >
> >> > > > While you're touching all these files, why not replace the
> >> > > > __u_boot_cmd* implementation with this as well. There's no need to
> >> > > > leave a special case in there as well is there?
> >> > >
> >> > > Not in the first stab, it can be indeed done later, but now I'd like to
> >> > > avoid breakage. Besides, replacing u_boot_cmd would break bisectability,
> >> > > I want to preserve it and rather apply more patches slowly than less
> >> > > patches recklessly.
> >> >
> >> > Agreed. We need to work hard to make sure we do lots of incremental
> >> > steps here to make sure breakage can be bisected.
> >>
> >> +1 (actually +inf.)
> >>
> >> > Making use of the
> >> > 'exec' step in git rebase is very helpful for making sure this is the
> >> > case too, btw.
> >>
> >> exec step ?
> >
> > Yes, in 'git rebase -i' you can insert exec lines after each commit such
> > as:
> > pick 12345 Commit 1
> > exec script-that-runs-MAKEALL.sh
> > pick 6789a Commit 2
> > exec script-that-runs-MAKEALL.sh
> >
> > I use my MAKEALL wrapper (http://pastebin.com/fNhG4iCd but I've updated
> > a bit more since I uploaded that) and --log `git rev-parse --short HEAD`
> > so I can see what's gone on for every step in a series.
>
> That's interesting. I've been using git-test-sequence for a similar
> purpose. It doesn't require the exec steps to be added manually,
> though.
>
> http://dustin.github.com/2010/03/28/git-test-sequence.html
+1 to git test-squence as well. I think the reason I didn't use that
after a while was that MAKEALL didn't non-zero exit on warnings. Of
course since I've moved on to logging all output from each step to
verfiy by hand, test-sequence would also work great here.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120924/f38620ad/attachment.pgp>
next prev parent reply other threads:[~2012-09-24 18:07 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-24 1:21 [U-Boot] [RFC] [PATCH 0/3] Linker-generated arrays Marek Vasut
2012-09-24 1:21 ` [U-Boot] [PATCH 1/3] common: Add symbol handling for generic lists into Makefile Marek Vasut
2012-09-24 15:36 ` Joe Hershberger
2012-09-24 16:04 ` Marek Vasut
2012-09-24 17:00 ` Joe Hershberger
2012-09-24 17:08 ` Marek Vasut
2012-09-24 17:43 ` Joe Hershberger
2012-09-24 1:21 ` [U-Boot] [PATCH 2/3] common: Implement support for linker-generated arrays Marek Vasut
2012-09-24 16:30 ` Joe Hershberger
2012-09-24 16:52 ` Marek Vasut
2012-09-24 1:21 ` [U-Boot] [PATCH 3/3] common: Add .u_boot_list into all linker files Marek Vasut
2012-09-24 16:34 ` Joe Hershberger
2012-09-24 16:53 ` Marek Vasut
2012-09-24 17:06 ` Tom Rini
2012-09-24 17:09 ` Marek Vasut
2012-09-24 17:18 ` Tom Rini
2012-09-24 17:23 ` Joe Hershberger
2012-09-24 18:07 ` Tom Rini [this message]
2012-09-24 17:25 ` Marek Vasut
2012-09-24 17:29 ` [U-Boot] [RFC] [PATCH 0/3] Linker-generated arrays Tom Rini
2012-09-24 17:42 ` Marek Vasut
2012-09-25 16:11 ` [U-Boot] [RFC] [PATCH 0/3 v2] " Marek Vasut
2012-09-25 16:11 ` [U-Boot] [PATCH 1/3 V2] common: Add symbol handling for generic lists into Makefile Marek Vasut
2012-09-25 20:12 ` Wolfgang Denk
2012-09-25 20:22 ` Marek Vasut
2012-09-25 16:11 ` [U-Boot] [PATCH 2/3 V2] common: Implement support for linker-generated arrays Marek Vasut
2012-09-25 20:16 ` Wolfgang Denk
2012-09-25 20:24 ` Marek Vasut
2012-09-26 7:01 ` Wolfgang Denk
2012-09-26 16:53 ` Marek Vasut
2012-09-29 1:45 ` Joe Hershberger
2012-09-29 2:49 ` Marek Vasut
2012-09-25 16:12 ` [U-Boot] [PATCH 3/3 V2] common: Add .u_boot_list into all linker files Marek Vasut
2012-09-25 16:43 ` Otavio Salvador
2012-09-25 16:54 ` Marek Vasut
2012-09-25 20:17 ` Wolfgang Denk
2012-09-25 20:25 ` Marek Vasut
2012-09-29 1:34 ` [U-Boot] [PATCH 0/5 V2] Linker-generated arrays Marek Vasut
2012-09-29 1:34 ` [U-Boot] [PATCH 1/5] common: Add symbol handling for generic lists into Makefile Marek Vasut
2012-09-29 2:29 ` [U-Boot] [PATCH 1/5 V2] " Marek Vasut
2012-09-29 1:35 ` [U-Boot] [PATCH 2/5] common: Implement support for linker-generated arrays Marek Vasut
2012-09-29 1:35 ` [U-Boot] [PATCH 3/5] common: Add .u_boot_list into all linker files Marek Vasut
2012-09-29 1:35 ` [U-Boot] [PATCH 4/5] common: Convert the U-Boot commands to LG-arrays Marek Vasut
2012-09-29 1:35 ` [U-Boot] [PATCH 5/5] common: Discard the __u_boot_cmd section Marek Vasut
2012-09-29 2:44 ` [U-Boot] [PATCH 0/5 V2] Linker-generated arrays 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=20120924180752.GG1797@bill-the-cat \
--to=trini@ti.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