linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux
@ 2010-04-23  9:38 Michael Roth
  2010-04-23 20:59 ` Michal Marek
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Michael Roth @ 2010-04-23  9:38 UTC (permalink / raw)
  To: linux-arm-kernel

Commit e7db7b4270ed2a606b8c0b5f944a5f92ade0e84c added LZO compressed
kernels, lib1funcs.S is copied from the appropriate ARM sub-arch
and vmlinux is the obvious fruit of all efforts.

Signed-off-by: Michael Roth <mroth@nessie.de>
---
 arch/arm/boot/compressed/.gitignore |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/compressed/.gitignore b/arch/arm/boot/compressed/.gitignore
index ab204db..6dac3d0 100644
--- a/arch/arm/boot/compressed/.gitignore
+++ b/arch/arm/boot/compressed/.gitignore
@@ -1,3 +1,6 @@
 font.c
+lib1funcs.S
 piggy.gz
+piggy.lzo
+vmlinux
 vmlinux.lds
-- 
1.6.4.4

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

* [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux
  2010-04-23  9:38 [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux Michael Roth
@ 2010-04-23 20:59 ` Michal Marek
  2010-05-01 10:11 ` Russell King - ARM Linux
  2010-08-31 12:52 ` [PATCH] [ARM] .gitignore: Ignore piggy.gzip, " Daniel Hobi
  2 siblings, 0 replies; 4+ messages in thread
From: Michal Marek @ 2010-04-23 20:59 UTC (permalink / raw)
  To: linux-arm-kernel

On 23.4.2010 11:38, Michael Roth wrote:
> Commit e7db7b4270ed2a606b8c0b5f944a5f92ade0e84c added LZO compressed
> kernels, lib1funcs.S is copied from the appropriate ARM sub-arch
> and vmlinux is the obvious fruit of all efforts.

vmlinux started to show up in 'git status' after 6db823c, which changed
vmlinux to /vmlinux in the top-level .gitignore.

BTW, there is already *.lzo in the top-level .gitignore in linux-next,
so you could omit piggy.lzo, but anyway

Acked-by: Michal Marek <mmarek@suse.cz>


> Signed-off-by: Michael Roth <mroth@nessie.de>
> ---
>  arch/arm/boot/compressed/.gitignore |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/compressed/.gitignore b/arch/arm/boot/compressed/.gitignore
> index ab204db..6dac3d0 100644
> --- a/arch/arm/boot/compressed/.gitignore
> +++ b/arch/arm/boot/compressed/.gitignore
> @@ -1,3 +1,6 @@
>  font.c
> +lib1funcs.S
>  piggy.gz
> +piggy.lzo
> +vmlinux
>  vmlinux.lds

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

* [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux
  2010-04-23  9:38 [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux Michael Roth
  2010-04-23 20:59 ` Michal Marek
@ 2010-05-01 10:11 ` Russell King - ARM Linux
  2010-08-31 12:52 ` [PATCH] [ARM] .gitignore: Ignore piggy.gzip, " Daniel Hobi
  2 siblings, 0 replies; 4+ messages in thread
From: Russell King - ARM Linux @ 2010-05-01 10:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Apr 23, 2010 at 11:38:18AM +0200, Michael Roth wrote:
> Commit e7db7b4270ed2a606b8c0b5f944a5f92ade0e84c added LZO compressed
> kernels, lib1funcs.S is copied from the appropriate ARM sub-arch
> and vmlinux is the obvious fruit of all efforts.

Looks fine, please submit to the patch system if not already done so.
Thanks.

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

* [PATCH] [ARM] .gitignore: Ignore piggy.gzip, lib1funcs.S and vmlinux
  2010-04-23  9:38 [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux Michael Roth
  2010-04-23 20:59 ` Michal Marek
  2010-05-01 10:11 ` Russell King - ARM Linux
@ 2010-08-31 12:52 ` Daniel Hobi
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Hobi @ 2010-08-31 12:52 UTC (permalink / raw)
  To: linux-arm-kernel

Commit e7db7b42 (arm: add support for LZO-compressed kernels) added
intermediate files piggy.gzip and lib1funcs.S without adding them to
.gitignore.

Commit 6db823c (Fix up .gitignore for top-level file patterns) changed
vmlinux to /vmlinux in the top-level .gitignore, thus making
arch/arm/boot/compressed/vmlinux visible.

Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
---
This patch revives https://patchwork.kernel.org/patch/94654/
([ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux)
by Michael Roth with the following changes:
 - do not add piggy.lzo because it is now covered by *.lzo rule
   from top-level .gitignore
 - Ignore piggy.gzip (instead of piggy.gz)

Please keep me on CC since I am not a subscriber.

 arch/arm/boot/compressed/.gitignore |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/arm/boot/compressed/.gitignore b/arch/arm/boot/compressed/.gitignore
index ab204db..e02c52e 100644
--- a/arch/arm/boot/compressed/.gitignore
+++ b/arch/arm/boot/compressed/.gitignore
@@ -1,3 +1,5 @@
 font.c
-piggy.gz
+lib1funcs.S
+piggy.gzip
+vmlinux
 vmlinux.lds
-- 
1.7.2.1

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

end of thread, other threads:[~2010-08-31 12:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-23  9:38 [PATCH] [ARM] .gitignore: Ignore piggy.lzo, lib1funcs.S and vmlinux Michael Roth
2010-04-23 20:59 ` Michal Marek
2010-05-01 10:11 ` Russell King - ARM Linux
2010-08-31 12:52 ` [PATCH] [ARM] .gitignore: Ignore piggy.gzip, " Daniel Hobi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).