mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Wolfram Sang <w.sang@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org, Uwe Kleine-Koenig <ukl@pengutronix.de>
Subject: Re: [PATCH 1/7] give nice output when generating barebox.bin and barebox.S
Date: Fri, 23 Apr 2010 08:19:29 +0200	[thread overview]
Message-ID: <20100423061929.GA26460@pengutronix.de> (raw)
In-Reply-To: <20100422111001.GH7882@pengutronix.de>


[-- Attachment #1.1: Type: text/plain, Size: 2746 bytes --]

On Thu, Apr 22, 2010 at 01:10:01PM +0200, Sascha Hauer wrote:
> On Mon, Apr 19, 2010 at 10:28:12AM +0200, Wolfram Sang wrote:
> > From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > 
> > As a side effect don't build barebox.S when barebox.bin is updated.  I
> > didn't manage to keep the old behaviour and I consider it cleaner this
> > way.
> 
> I don't understand this completely. We only need barebox.S updated when
> barebox is updated, not when barebox.bin is updated. Is this what you
> mean?
> 

Uwe dropped off the cc...

> Sascha
> 
> > 
> > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
> > ---
> > 
> > Passing it through, ask Uwe for details if needed.
> > 
> >  Makefile |   17 ++++++++++++++---
> >  1 files changed, 14 insertions(+), 3 deletions(-)
> > 
> > diff --git a/Makefile b/Makefile
> > index c92c5dd..5b4f964 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -641,9 +641,16 @@ define rule_barebox-modpost
> >  	$(Q)echo 'cmd_$@ := $(cmd_barebox-modpost)' > $(dot-target).cmd
> >  endef
> >  
> > -barebox.bin: barebox
> > -	$(Q)$(OBJCOPY) -O binary barebox barebox.bin
> > +quiet_cmd_objcopy = OBJCOPY $@
> > +      cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
> > +
> > +OBJCOPYFLAGS_barebox.bin = -O binary
> > +
> > +barebox.bin: barebox FORCE
> > +	$(call if_changed,objcopy)
> > +
> >  ifdef CONFIG_X86
> > +barebox.S: barebox
> >  ifdef CONFIG_X86_HDBOOT
> >  	@echo "-------------------------------------------------" > barebox.S
> >  	@echo " * MBR content" >> barebox.S
> > @@ -665,7 +672,11 @@ endif
> >  	@echo " * Init Calls content" >> barebox.S
> >  	$(Q)$(OBJDUMP) -j .barebox_initcalls -d barebox >> barebox.S
> >  else
> > -	$(Q)$(OBJDUMP) -d barebox > barebox.S
> > +quiet_cmd_disasm = DISASM  $@
> > +      cmd_disasm = $(OBJDUMP) -d $< > $@
> > +
> > +barebox.S: barebox FORCE
> > +	$(call if_changed,disasm)
> >  endif
> >  
> >  # barebox image
> > -- 
> > 1.7.0
> > 
> > 
> > _______________________________________________
> > barebox mailing list
> > barebox@lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/barebox
> 
> -- 
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

[-- Attachment #2: Type: text/plain, Size: 149 bytes --]

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2010-04-23  6:19 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-19  8:28 Patch series derived from latest project Wolfram Sang
     [not found] ` <1271665698-23163-7-git-send-email-w.sang@pengutronix.de>
2010-04-19  8:38   ` [PATCH 6/7] wip: fix possible error on overflow in is_timeout Uwe Kleine-König
     [not found]     ` <1271734752-8377-1-git-send-email-w.sang@pengutronix.de>
2010-04-22 11:32       ` [PATCH 6/7] clock: " Sascha Hauer
     [not found] ` <1271665698-23163-2-git-send-email-w.sang@pengutronix.de>
2010-04-22 11:10   ` [PATCH 1/7] give nice output when generating barebox.bin and barebox.S Sascha Hauer
2010-04-23  6:19     ` Wolfram Sang [this message]
2010-04-23  8:17     ` Uwe Kleine-König
     [not found] ` <1271665698-23163-3-git-send-email-w.sang@pengutronix.de>
2010-04-19  8:54   ` [PATCH 2/7] imx/gpio: make gpio_get_value actually work Uwe Kleine-König
2010-04-22 11:16   ` Sascha Hauer
     [not found]     ` <1272003760-15646-1-git-send-email-w.sang@pengutronix.de>
2010-04-23  7:49       ` Sascha Hauer
     [not found] ` <1271665698-23163-4-git-send-email-w.sang@pengutronix.de>
2010-04-22 11:31   ` [PATCH 3/7] arm: update mach-types Sascha Hauer
     [not found] ` <1271665698-23163-5-git-send-email-w.sang@pengutronix.de>
2010-04-22 11:31   ` [PATCH 4/7] cfi_flash: use flash_write_word instead of reimplementing it again Sascha Hauer
     [not found] ` <1271665698-23163-6-git-send-email-w.sang@pengutronix.de>
2010-04-22 11:31   ` [PATCH 5/7] board/pcm038: document value written to ESDCFG0 Sascha Hauer
     [not found] ` <1271665698-23163-8-git-send-email-w.sang@pengutronix.de>
2010-04-22 11:34   ` [PATCH 7/7] nor: Don't use the sector for the unlock sequence Sascha Hauer

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=20100423061929.GA26460@pengutronix.de \
    --to=w.sang@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=s.hauer@pengutronix.de \
    --cc=ukl@pengutronix.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