All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Makefile: clean boot.bin
@ 2015-01-15  2:03 Bo Shen
  2015-01-23  7:34 ` Bo Shen
  2015-01-29 13:59 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: Bo Shen @ 2015-01-15  2:03 UTC (permalink / raw)
  To: u-boot

When build for Atmel related boards which support SPL,
it will generate boot.bin, also clean when it when do
"make clean" operation.

Signed-off-by: Bo Shen <voice.shen@atmel.com>
---

 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 36a9a28..ea5ae8f 100644
--- a/Makefile
+++ b/Makefile
@@ -1278,7 +1278,7 @@ CLEAN_DIRS  += $(MODVERDIR) \
 			$(filter-out include, $(shell ls -1 $d 2>/dev/null))))
 
 CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \
-	       u-boot* MLO* SPL System.map
+	       boot* u-boot* MLO* SPL System.map
 
 # Directories & files removed with 'make mrproper'
 MRPROPER_DIRS  += include/config include/generated spl tpl \
-- 
2.3.0.rc0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] Makefile: clean boot.bin
  2015-01-15  2:03 [U-Boot] [PATCH] Makefile: clean boot.bin Bo Shen
@ 2015-01-23  7:34 ` Bo Shen
  2015-01-23  7:44   ` Masahiro Yamada
  2015-01-29 13:59 ` [U-Boot] " Tom Rini
  1 sibling, 1 reply; 5+ messages in thread
From: Bo Shen @ 2015-01-23  7:34 UTC (permalink / raw)
  To: u-boot

+ Tom, Masahiro,

On 01/15/2015 10:03 AM, Bo Shen wrote:
> When build for Atmel related boards which support SPL,
> it will generate boot.bin, also clean when it when do
> "make clean" operation.
>
> Signed-off-by: Bo Shen <voice.shen@atmel.com>
> ---
>
>   Makefile | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Ping?

> diff --git a/Makefile b/Makefile
> index 36a9a28..ea5ae8f 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1278,7 +1278,7 @@ CLEAN_DIRS  += $(MODVERDIR) \
>   			$(filter-out include, $(shell ls -1 $d 2>/dev/null))))
>
>   CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \
> -	       u-boot* MLO* SPL System.map
> +	       boot* u-boot* MLO* SPL System.map
>
>   # Directories & files removed with 'make mrproper'
>   MRPROPER_DIRS  += include/config include/generated spl tpl \
>

Best Regards,
Bo Shen

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] Makefile: clean boot.bin
  2015-01-23  7:34 ` Bo Shen
@ 2015-01-23  7:44   ` Masahiro Yamada
  2015-01-28  1:17     ` Bo Shen
  0 siblings, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2015-01-23  7:44 UTC (permalink / raw)
  To: u-boot


On Fri, 23 Jan 2015 15:34:08 +0800
Bo Shen <voice.shen@atmel.com> wrote:

> + Tom, Masahiro,
> 
> On 01/15/2015 10:03 AM, Bo Shen wrote:
> > When build for Atmel related boards which support SPL,
> > it will generate boot.bin, also clean when it when do
> > "make clean" operation.
> >
> > Signed-off-by: Bo Shen <voice.shen@atmel.com>


Acked-by: Masahiro Yamada <yamada.m@jp.panasonic.com>


I think this patch should be applied by Tom,
because I am a contributer of the build system
but am not the custodian.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] Makefile: clean boot.bin
  2015-01-23  7:44   ` Masahiro Yamada
@ 2015-01-28  1:17     ` Bo Shen
  0 siblings, 0 replies; 5+ messages in thread
From: Bo Shen @ 2015-01-28  1:17 UTC (permalink / raw)
  To: u-boot

On 01/23/2015 03:44 PM, Masahiro Yamada wrote:
>
> On Fri, 23 Jan 2015 15:34:08 +0800
> Bo Shen <voice.shen@atmel.com> wrote:
>
>> + Tom, Masahiro,
>>
>> On 01/15/2015 10:03 AM, Bo Shen wrote:
>>> When build for Atmel related boards which support SPL,
>>> it will generate boot.bin, also clean when it when do
>>> "make clean" operation.
>>>
>>> Signed-off-by: Bo Shen <voice.shen@atmel.com>

Hi Tom,

Can this patch be applied? Thanks.

>
> Acked-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Hi Masahiro,
   Thanks.

>
> I think this patch should be applied by Tom,
> because I am a contributer of the build system
> but am not the custodian.

Best Regards,
Bo Shen

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] Makefile: clean boot.bin
  2015-01-15  2:03 [U-Boot] [PATCH] Makefile: clean boot.bin Bo Shen
  2015-01-23  7:34 ` Bo Shen
@ 2015-01-29 13:59 ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2015-01-29 13:59 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 15, 2015 at 10:03:53AM +0800, Bo Shen wrote:

> When build for Atmel related boards which support SPL,
> it will generate boot.bin, also clean when it when do
> "make clean" operation.
> 
> Signed-off-by: Bo Shen <voice.shen@atmel.com>
> Acked-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150129/bc15c5e3/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-01-29 13:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-15  2:03 [U-Boot] [PATCH] Makefile: clean boot.bin Bo Shen
2015-01-23  7:34 ` Bo Shen
2015-01-23  7:44   ` Masahiro Yamada
2015-01-28  1:17     ` Bo Shen
2015-01-29 13:59 ` [U-Boot] " Tom Rini

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.