mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* "make distclean" leaves a pile of arch/arm/dts/*.lzo files
@ 2015-12-10 15:28 Robert P. J. Day
  2015-12-11  7:03 ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Robert P. J. Day @ 2015-12-10 15:28 UTC (permalink / raw)
  To: barebox mailing list


  just did a configure and build for a beaglebone black, then ran
"make distclean" and ...

$ git status --ignored
On branch master
Your branch is up-to-date with 'origin/master'.
Ignored files:
  (use "git add -f <file>..." to include in what will be committed)

	arch/arm/dts/am335x-afi-gf.dtb.lzo
	arch/arm/dts/am335x-bone-common.dtb.lzo
	arch/arm/dts/am335x-bone.dtb.lzo
	arch/arm/dts/am335x-boneblack.dtb.lzo
	arch/arm/dts/am335x-phytec-phycard-som-mlo.dtb.lzo
	arch/arm/dts/am335x-phytec-phycard-som.dtb.lzo
	arch/arm/dts/am335x-phytec-phycore-som-mlo.dtb.lzo
	arch/arm/dts/am335x-phytec-phycore-som-no-eeprom.dtb.lzo
        arch/arm/dts/am335x-phytec-phycore-som-no-spi-no-eeprom.dtb.lzo
	arch/arm/dts/am335x-phytec-phycore-som-no-spi.dtb.lzo
	arch/arm/dts/am335x-phytec-phycore-som.dtb.lzo
	arch/arm/dts/am335x-phytec-phyflex-som-mlo.dtb.lzo
	arch/arm/dts/am335x-phytec-phyflex-som-no-eeprom.dtb.lzo
	arch/arm/dts/am335x-phytec-phyflex-som-no-spi-no-eeprom.dtb.lzo
	arch/arm/dts/am335x-phytec-phyflex-som-no-spi.dtb.lzo
	arch/arm/dts/am335x-phytec-phyflex-som.dtb.lzo
	barebox-flash-images

nothing to commit, working directory clean
$

  so i'm guessing building for other targets will also leave .lzo
files lying around.

rday


-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================


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

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

* Re: "make distclean" leaves a pile of arch/arm/dts/*.lzo files
  2015-12-10 15:28 "make distclean" leaves a pile of arch/arm/dts/*.lzo files Robert P. J. Day
@ 2015-12-11  7:03 ` Sascha Hauer
  2015-12-11 11:43   ` Robert P. J. Day
  0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2015-12-11  7:03 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: barebox mailing list

Hi Robert,

On Thu, Dec 10, 2015 at 10:28:18AM -0500, Robert P. J. Day wrote:
> 
>   just did a configure and build for a beaglebone black, then ran
> "make distclean" and ...
> 
> $ git status --ignored
> On branch master
> Your branch is up-to-date with 'origin/master'.
> Ignored files:
>   (use "git add -f <file>..." to include in what will be committed)
> 
> 	arch/arm/dts/am335x-afi-gf.dtb.lzo
> 	arch/arm/dts/am335x-bone-common.dtb.lzo
> 	arch/arm/dts/am335x-bone.dtb.lzo
> 	arch/arm/dts/am335x-boneblack.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phycard-som-mlo.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phycard-som.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phycore-som-mlo.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phycore-som-no-eeprom.dtb.lzo
>         arch/arm/dts/am335x-phytec-phycore-som-no-spi-no-eeprom.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phycore-som-no-spi.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phycore-som.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phyflex-som-mlo.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phyflex-som-no-eeprom.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phyflex-som-no-spi-no-eeprom.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phyflex-som-no-spi.dtb.lzo
> 	arch/arm/dts/am335x-phytec-phyflex-som.dtb.lzo
> 	barebox-flash-images
> 
> nothing to commit, working directory clean
> $
> 
>   so i'm guessing building for other targets will also leave .lzo
> files lying around.

Added the following patch, this should fix this issue. Thanks for
noting.

Sascha

---------------------------8<-------------------------------

From a9e7e68279de3aec38b038211a15a80cfc612c4e Mon Sep 17 00:00:00 2001
From: Sascha Hauer <s.hauer@pengutronix.de>
Date: Fri, 11 Dec 2015 08:02:02 +0100
Subject: [PATCH] ARM: dts: Add *.dtb.lzo to clean files

*.dtb.lzo are generated during compilatiion, delete them.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/dts/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 49a2f99..2da930e 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -71,4 +71,4 @@ pbl-dtb-$(CONFIG_MACH_UDOO) += imx6q-udoo.dtb.o
 pbl-dtb-$(CONFIG_MACH_USI_TOPKICK) += kirkwood-topkick-bb.dtb.o
 pbl-dtb-$(CONFIG_MACH_VARISCITE_MX6) += imx6q-var-custom.dtb.o
 
-clean-files := *.dtb *.dtb.S .*.dtc .*.pre .*.dts
+clean-files := *.dtb *.dtb.S .*.dtc .*.pre .*.dts *.dtb.lzo
-- 
2.6.2

-- 
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 |

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

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

* Re: "make distclean" leaves a pile of arch/arm/dts/*.lzo files
  2015-12-11  7:03 ` Sascha Hauer
@ 2015-12-11 11:43   ` Robert P. J. Day
  0 siblings, 0 replies; 3+ messages in thread
From: Robert P. J. Day @ 2015-12-11 11:43 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox mailing list

On Fri, 11 Dec 2015, Sascha Hauer wrote:

> Hi Robert,
>
> On Thu, Dec 10, 2015 at 10:28:18AM -0500, Robert P. J. Day wrote:
> >
> >   just did a configure and build for a beaglebone black, then ran
> > "make distclean" and ...
> >
> > $ git status --ignored
> > On branch master
> > Your branch is up-to-date with 'origin/master'.
> > Ignored files:
> >   (use "git add -f <file>..." to include in what will be committed)
> >
> > 	arch/arm/dts/am335x-afi-gf.dtb.lzo
> > 	arch/arm/dts/am335x-bone-common.dtb.lzo
> > 	arch/arm/dts/am335x-bone.dtb.lzo
> > 	arch/arm/dts/am335x-boneblack.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phycard-som-mlo.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phycard-som.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phycore-som-mlo.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phycore-som-no-eeprom.dtb.lzo
> >         arch/arm/dts/am335x-phytec-phycore-som-no-spi-no-eeprom.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phycore-som-no-spi.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phycore-som.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phyflex-som-mlo.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phyflex-som-no-eeprom.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phyflex-som-no-spi-no-eeprom.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phyflex-som-no-spi.dtb.lzo
> > 	arch/arm/dts/am335x-phytec-phyflex-som.dtb.lzo
> > 	barebox-flash-images
> >
> > nothing to commit, working directory clean
> > $
> >
> >   so i'm guessing building for other targets will also leave .lzo
> > files lying around.
>
> Added the following patch, this should fix this issue. Thanks for
> noting.

  what about that last line, "barebox-flash-images"? should that also
be cleaned out?

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================


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

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

end of thread, other threads:[~2015-12-11 11:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-10 15:28 "make distclean" leaves a pile of arch/arm/dts/*.lzo files Robert P. J. Day
2015-12-11  7:03 ` Sascha Hauer
2015-12-11 11:43   ` Robert P. J. Day

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox