Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 0/3] Improve silent builds
@ 2014-11-06  9:13 Fabio Porcedda
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 1/3] Makefile: improve detection of make "-s" flag Fabio Porcedda
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06  9:13 UTC (permalink / raw)
  To: buildroot

This patch set improves silent builds.

Silent builds are nice when top-level parallel make is being used to
reduce the output clutter.

The change logs are in each patch.

Best regards
Fabio Porcedda (3):
  Makefile: improve detection of make "-s" flag
  pkg-download: silence the svn download helper if it is a silent build
  support/download: silence git if it is a silence build

 Makefile                |  2 +-
 package/pkg-download.mk |  5 +++--
 support/download/git    | 14 ++++++++++----
 3 files changed, 14 insertions(+), 7 deletions(-)

-- 
2.1.3

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

* [Buildroot] [PATCH v3 1/3] Makefile: improve detection of make "-s" flag
  2014-11-06  9:13 [Buildroot] [PATCH v3 0/3] Improve silent builds Fabio Porcedda
@ 2014-11-06  9:13 ` Fabio Porcedda
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 2/3] pkg-download: silence the svn download helper if it is a silent build Fabio Porcedda
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06  9:13 UTC (permalink / raw)
  To: buildroot

Because it's just checked the presence of the "s" character even a
  make --warn-undefined-variables
is detected as a silent build so fix this by filtering out long options.

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
---

Notes:
    v2:
     - remove spurious space at the beginning of the QUIET variable (Arnout)

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

diff --git a/Makefile b/Makefile
index 907a0fc..19997c7 100644
--- a/Makefile
+++ b/Makefile
@@ -303,7 +303,7 @@ GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
 TARGETS :=
 
 # silent mode requested?
-QUIET := $(if $(findstring s,$(MAKEFLAGS)),-q)
+QUIET := $(if $(findstring s, $(filter-out --%, $(MAKEFLAGS))),-q)
 
 # Strip off the annoying quoting
 ARCH := $(call qstrip,$(BR2_ARCH))
-- 
2.1.3

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

* [Buildroot] [PATCH v3 2/3] pkg-download: silence the svn download helper if it is a silent build
  2014-11-06  9:13 [Buildroot] [PATCH v3 0/3] Improve silent builds Fabio Porcedda
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 1/3] Makefile: improve detection of make "-s" flag Fabio Porcedda
@ 2014-11-06  9:13 ` Fabio Porcedda
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 3/3] support/download: silence git if it is a silence build Fabio Porcedda
  2014-11-06 17:27 ` [Buildroot] [PATCH v3 0/3] Improve silent builds Thomas Petazzoni
  3 siblings, 0 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06  9:13 UTC (permalink / raw)
  To: buildroot

If it is a silent build (make -s -> QUIET=-q), silence the svn download
helper using "svn -q" just like others download helpers, e.g. wget.

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
---

Notes:
    v3:
     - add this patch

 package/pkg-download.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index f3409bd..92240c0 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -9,7 +9,7 @@
 
 # Download method commands
 export WGET := $(call qstrip,$(BR2_WGET)) $(QUIET)
-export SVN := $(call qstrip,$(BR2_SVN))
+export SVN := $(call qstrip,$(BR2_SVN)) $(QUIET)
 export CVS := $(call qstrip,$(BR2_CVS))
 export BZR := $(call qstrip,$(BR2_BZR))
 export GIT := $(call qstrip,$(BR2_GIT))
-- 
2.1.3

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

* [Buildroot] [PATCH v3 3/3] support/download: silence git if it is a silence build
  2014-11-06  9:13 [Buildroot] [PATCH v3 0/3] Improve silent builds Fabio Porcedda
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 1/3] Makefile: improve detection of make "-s" flag Fabio Porcedda
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 2/3] pkg-download: silence the svn download helper if it is a silent build Fabio Porcedda
@ 2014-11-06  9:13 ` Fabio Porcedda
  2014-11-06 17:27 ` [Buildroot] [PATCH v3 0/3] Improve silent builds Thomas Petazzoni
  3 siblings, 0 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06  9:13 UTC (permalink / raw)
  To: buildroot

If it is a silence build (make -s -> QUIET=-q), silence the git download
helper using "git clone -q" just like others download helpers,
e.g. wget.

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
---

Notes:
    v3:
     - add this patch

 package/pkg-download.mk |  3 ++-
 support/download/git    | 14 ++++++++++----
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index 92240c0..265fb88 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -99,7 +99,8 @@ define DOWNLOAD_GIT
 		$(DL_DIR)/$($(PKG)_SOURCE) \
 		$($(PKG)_SITE) \
 		$($(PKG)_DL_VERSION) \
-		$($(PKG)_BASE_NAME)
+		$($(PKG)_BASE_NAME) \
+		$(QUIET)
 endef
 
 # TODO: improve to check that the given PKG_DL_VERSION exists on the remote
diff --git a/support/download/git b/support/download/git
index 5d36ca4..4ce9030 100755
--- a/support/download/git
+++ b/support/download/git
@@ -9,6 +9,7 @@ set -e
 #   $2: git repo
 #   $3: git cset
 #   $4: package's basename (eg. foobar-1.2.3)
+#   $5: "-q", optional quiet flag
 # And this environment:
 #   GIT      : the git command to call
 
@@ -16,21 +17,26 @@ output="${1}"
 repo="${2}"
 cset="${3}"
 basename="${4}"
+quiet="${5}"
 
 # Try to see if we can do a shallow clone, since it is faster
 # than a full clone.
 git_done=0
 if [ -n "$(${GIT} ls-remote "${repo}" "${cset}" 2>&1)" ]; then
-    printf "Doing shallow clone\n"
-    if ${GIT} clone --depth 1 -b "${cset}" --bare "${repo}" "${basename}"; then
+    if [ -z "${quiet}" ]; then
+	printf "Doing shallow clone\n";
+    fi
+    if ${GIT} clone ${quiet} --depth 1 -b "${cset}" --bare "${repo}" "${basename}"; then
         git_done=1
     else
         printf "Shallow clone failed, falling back to doing a full clone\n"
     fi
 fi
 if [ ${git_done} -eq 0 ]; then
-    printf "Doing full clone\n"
-    ${GIT} clone --bare "${repo}" "${basename}"
+    if [ -z "${quiet}" ]; then
+	printf "Doing full clone\n";
+    fi
+    ${GIT} clone ${quiet} --bare "${repo}" "${basename}"
 fi
 
 GIT_DIR="${basename}" \
-- 
2.1.3

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06  9:13 [Buildroot] [PATCH v3 0/3] Improve silent builds Fabio Porcedda
                   ` (2 preceding siblings ...)
  2014-11-06  9:13 ` [Buildroot] [PATCH v3 3/3] support/download: silence git if it is a silence build Fabio Porcedda
@ 2014-11-06 17:27 ` Thomas Petazzoni
  2014-11-06 17:35   ` Fabio Porcedda
  3 siblings, 1 reply; 13+ messages in thread
From: Thomas Petazzoni @ 2014-11-06 17:27 UTC (permalink / raw)
  To: buildroot

Dear Fabio Porcedda,

On Thu,  6 Nov 2014 10:13:34 +0100, Fabio Porcedda wrote:
> This patch set improves silent builds.
> 
> Silent builds are nice when top-level parallel make is being used to
> reduce the output clutter.
> 
> The change logs are in each patch.
> 
> Best regards
> Fabio Porcedda (3):
>   Makefile: improve detection of make "-s" flag
>   pkg-download: silence the svn download helper if it is a silent build
>   support/download: silence git if it is a silence build

When I look at patches 2 and 3, I must say I dislike the fact that in
one case (svn), silencing is handled in pkg-download.mk when defining
the SVN variable, while in the other case (git), it's handled in the
git-specific helper script.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06 17:27 ` [Buildroot] [PATCH v3 0/3] Improve silent builds Thomas Petazzoni
@ 2014-11-06 17:35   ` Fabio Porcedda
  2014-11-06 17:50     ` Fabio Porcedda
  2014-11-06 17:53     ` Thomas Petazzoni
  0 siblings, 2 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06 17:35 UTC (permalink / raw)
  To: buildroot

On Thu, Nov 6, 2014 at 6:27 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Fabio Porcedda,
>
> On Thu,  6 Nov 2014 10:13:34 +0100, Fabio Porcedda wrote:
>> This patch set improves silent builds.
>>
>> Silent builds are nice when top-level parallel make is being used to
>> reduce the output clutter.
>>
>> The change logs are in each patch.
>>
>> Best regards
>> Fabio Porcedda (3):
>>   Makefile: improve detection of make "-s" flag
>>   pkg-download: silence the svn download helper if it is a silent build
>>   support/download: silence git if it is a silence build
>
> When I look at patches 2 and 3, I must say I dislike the fact that in
> one case (svn), silencing is handled in pkg-download.mk when defining
> the SVN variable, while in the other case (git), it's handled in the
> git-specific helper script.

I would like to do the same for git but it does not work because:
  git -q clone <url>
does not work, but
  git  clone -q <url>
works, so adding the "-q" in the script is the only option.

Do you have any better idea?

Thanks for reviewing
-- 
Fabio Porcedda

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06 17:35   ` Fabio Porcedda
@ 2014-11-06 17:50     ` Fabio Porcedda
  2014-11-06 17:53     ` Thomas Petazzoni
  1 sibling, 0 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06 17:50 UTC (permalink / raw)
  To: buildroot

On Thu, Nov 6, 2014 at 6:35 PM, Fabio Porcedda <fabio.porcedda@gmail.com> wrote:
> On Thu, Nov 6, 2014 at 6:27 PM, Thomas Petazzoni
> <thomas.petazzoni@free-electrons.com> wrote:
>> Dear Fabio Porcedda,
>>
>> On Thu,  6 Nov 2014 10:13:34 +0100, Fabio Porcedda wrote:
>>> This patch set improves silent builds.
>>>
>>> Silent builds are nice when top-level parallel make is being used to
>>> reduce the output clutter.
>>>
>>> The change logs are in each patch.
>>>
>>> Best regards
>>> Fabio Porcedda (3):
>>>   Makefile: improve detection of make "-s" flag
>>>   pkg-download: silence the svn download helper if it is a silent build
>>>   support/download: silence git if it is a silence build
>>
>> When I look at patches 2 and 3, I must say I dislike the fact that in
>> one case (svn), silencing is handled in pkg-download.mk when defining
>> the SVN variable, while in the other case (git), it's handled in the
>> git-specific helper script.
>
> I would like to do the same for git but it does not work because:
>   git -q clone <url>
> does not work, but
>   git  clone -q <url>
> works, so adding the "-q" in the script is the only option.
>
> Do you have any better idea?

I've forgotten to add Yann in CC.

BR
-- 
Fabio Porcedda

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06 17:35   ` Fabio Porcedda
  2014-11-06 17:50     ` Fabio Porcedda
@ 2014-11-06 17:53     ` Thomas Petazzoni
  2014-11-06 18:03       ` Fabio Porcedda
  2014-11-11 15:37       ` Yann E. MORIN
  1 sibling, 2 replies; 13+ messages in thread
From: Thomas Petazzoni @ 2014-11-06 17:53 UTC (permalink / raw)
  To: buildroot

Dear Fabio Porcedda,

On Thu, 6 Nov 2014 18:35:32 +0100, Fabio Porcedda wrote:

> > When I look at patches 2 and 3, I must say I dislike the fact that in
> > one case (svn), silencing is handled in pkg-download.mk when defining
> > the SVN variable, while in the other case (git), it's handled in the
> > git-specific helper script.
> 
> I would like to do the same for git but it does not work because:
>   git -q clone <url>
> does not work, but
>   git  clone -q <url>
> works, so adding the "-q" in the script is the only option.
> 
> Do you have any better idea?

Yes: handle the svn case in the download helper as well. This way,
we're consistent between svn and git. And maybe wget should be handled
this way as well.

Yann can comment on this on whether my proposal is fine for him.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06 17:53     ` Thomas Petazzoni
@ 2014-11-06 18:03       ` Fabio Porcedda
  2014-11-11 15:26         ` Fabio Porcedda
  2014-11-11 15:37       ` Yann E. MORIN
  1 sibling, 1 reply; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-06 18:03 UTC (permalink / raw)
  To: buildroot

On Thu, Nov 6, 2014 at 6:53 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Fabio Porcedda,
>
> On Thu, 6 Nov 2014 18:35:32 +0100, Fabio Porcedda wrote:
>
>> > When I look at patches 2 and 3, I must say I dislike the fact that in
>> > one case (svn), silencing is handled in pkg-download.mk when defining
>> > the SVN variable, while in the other case (git), it's handled in the
>> > git-specific helper script.
>>
>> I would like to do the same for git but it does not work because:
>>   git -q clone <url>
>> does not work, but
>>   git  clone -q <url>
>> works, so adding the "-q" in the script is the only option.
>>
>> Do you have any better idea?
>
> Yes: handle the svn case in the download helper as well. This way,
> we're consistent between svn and git. And maybe wget should be handled
> this way as well.

Even the HG and SCP variables contain the "-q" option so with this
patch there are a total of four variables.

> Yann can comment on this on whether my proposal is fine for him.

BR
-- 
Fabio Porcedda

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06 18:03       ` Fabio Porcedda
@ 2014-11-11 15:26         ` Fabio Porcedda
  0 siblings, 0 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-11 15:26 UTC (permalink / raw)
  To: buildroot

On Thu, Nov 6, 2014 at 7:03 PM, Fabio Porcedda <fabio.porcedda@gmail.com> wrote:
> On Thu, Nov 6, 2014 at 6:53 PM, Thomas Petazzoni
> <thomas.petazzoni@free-electrons.com> wrote:
>> Dear Fabio Porcedda,
>>
>> On Thu, 6 Nov 2014 18:35:32 +0100, Fabio Porcedda wrote:
>>
>>> > When I look at patches 2 and 3, I must say I dislike the fact that in
>>> > one case (svn), silencing is handled in pkg-download.mk when defining
>>> > the SVN variable, while in the other case (git), it's handled in the
>>> > git-specific helper script.
>>>
>>> I would like to do the same for git but it does not work because:
>>>   git -q clone <url>
>>> does not work, but
>>>   git  clone -q <url>
>>> works, so adding the "-q" in the script is the only option.
>>>
>>> Do you have any better idea?
>>
>> Yes: handle the svn case in the download helper as well. This way,
>> we're consistent between svn and git. And maybe wget should be handled
>> this way as well.
>
> Even the HG and SCP variables contain the "-q" option so with this
> patch there are a total of four variables.
>
>> Yann can comment on this on whether my proposal is fine for him.


Yann do you have any opinion about this?

BR
-- 
Fabio Porcedda

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-06 17:53     ` Thomas Petazzoni
  2014-11-06 18:03       ` Fabio Porcedda
@ 2014-11-11 15:37       ` Yann E. MORIN
  2014-11-11 15:39         ` Fabio Porcedda
  1 sibling, 1 reply; 13+ messages in thread
From: Yann E. MORIN @ 2014-11-11 15:37 UTC (permalink / raw)
  To: buildroot

Thomas, Fabio, All,

On 2014-11-06 18:53 +0100, Thomas Petazzoni spake thusly:
> On Thu, 6 Nov 2014 18:35:32 +0100, Fabio Porcedda wrote:
> 
> > > When I look at patches 2 and 3, I must say I dislike the fact that in
> > > one case (svn), silencing is handled in pkg-download.mk when defining
> > > the SVN variable, while in the other case (git), it's handled in the
> > > git-specific helper script.
> > 
> > I would like to do the same for git but it does not work because:
> >   git -q clone <url>
> > does not work, but
> >   git  clone -q <url>
> > works, so adding the "-q" in the script is the only option.
> > 
> > Do you have any better idea?
> 
> Yes: handle the svn case in the download helper as well. This way,
> we're consistent between svn and git. And maybe wget should be handled
> this way as well.
> 
> Yann can comment on this on whether my proposal is fine for him.

Sorry for the delay, still dequeuing my mails from last week...

I agree with Thomas proposal: move everything into the helper scripts.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-11 15:37       ` Yann E. MORIN
@ 2014-11-11 15:39         ` Fabio Porcedda
  2014-11-24 14:04           ` Fabio Porcedda
  0 siblings, 1 reply; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-11 15:39 UTC (permalink / raw)
  To: buildroot

On Tue, Nov 11, 2014 at 4:37 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Thomas, Fabio, All,
>
> On 2014-11-06 18:53 +0100, Thomas Petazzoni spake thusly:
>> On Thu, 6 Nov 2014 18:35:32 +0100, Fabio Porcedda wrote:
>>
>> > > When I look at patches 2 and 3, I must say I dislike the fact that in
>> > > one case (svn), silencing is handled in pkg-download.mk when defining
>> > > the SVN variable, while in the other case (git), it's handled in the
>> > > git-specific helper script.
>> >
>> > I would like to do the same for git but it does not work because:
>> >   git -q clone <url>
>> > does not work, but
>> >   git  clone -q <url>
>> > works, so adding the "-q" in the script is the only option.
>> >
>> > Do you have any better idea?
>>
>> Yes: handle the svn case in the download helper as well. This way,
>> we're consistent between svn and git. And maybe wget should be handled
>> this way as well.
>>
>> Yann can comment on this on whether my proposal is fine for him.
>
> Sorry for the delay, still dequeuing my mails from last week...
>
> I agree with Thomas proposal: move everything into the helper scripts.

Ok, i will send an updated patch set.

BR
-- 
Fabio Porcedda

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

* [Buildroot] [PATCH v3 0/3] Improve silent builds
  2014-11-11 15:39         ` Fabio Porcedda
@ 2014-11-24 14:04           ` Fabio Porcedda
  0 siblings, 0 replies; 13+ messages in thread
From: Fabio Porcedda @ 2014-11-24 14:04 UTC (permalink / raw)
  To: buildroot

On Tue, Nov 11, 2014 at 4:39 PM, Fabio Porcedda
<fabio.porcedda@gmail.com> wrote:
> On Tue, Nov 11, 2014 at 4:37 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
>> Thomas, Fabio, All,
>>
>> On 2014-11-06 18:53 +0100, Thomas Petazzoni spake thusly:
>>> On Thu, 6 Nov 2014 18:35:32 +0100, Fabio Porcedda wrote:
>>>
>>> > > When I look at patches 2 and 3, I must say I dislike the fact that in
>>> > > one case (svn), silencing is handled in pkg-download.mk when defining
>>> > > the SVN variable, while in the other case (git), it's handled in the
>>> > > git-specific helper script.
>>> >
>>> > I would like to do the same for git but it does not work because:
>>> >   git -q clone <url>
>>> > does not work, but
>>> >   git  clone -q <url>
>>> > works, so adding the "-q" in the script is the only option.
>>> >
>>> > Do you have any better idea?
>>>
>>> Yes: handle the svn case in the download helper as well. This way,
>>> we're consistent between svn and git. And maybe wget should be handled
>>> this way as well.
>>>
>>> Yann can comment on this on whether my proposal is fine for him.
>>
>> Sorry for the delay, still dequeuing my mails from last week...
>>
>> I agree with Thomas proposal: move everything into the helper scripts.
>
> Ok, i will send an updated patch set.

I've sent two updated patch sets:
- for master: http://patchwork.ozlabs.org/patch/412475/
- for next: http://patchwork.ozlabs.org/bundle/fabio/silent-download-v4/

BR
-- 
Fabio Porcedda

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

end of thread, other threads:[~2014-11-24 14:04 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-06  9:13 [Buildroot] [PATCH v3 0/3] Improve silent builds Fabio Porcedda
2014-11-06  9:13 ` [Buildroot] [PATCH v3 1/3] Makefile: improve detection of make "-s" flag Fabio Porcedda
2014-11-06  9:13 ` [Buildroot] [PATCH v3 2/3] pkg-download: silence the svn download helper if it is a silent build Fabio Porcedda
2014-11-06  9:13 ` [Buildroot] [PATCH v3 3/3] support/download: silence git if it is a silence build Fabio Porcedda
2014-11-06 17:27 ` [Buildroot] [PATCH v3 0/3] Improve silent builds Thomas Petazzoni
2014-11-06 17:35   ` Fabio Porcedda
2014-11-06 17:50     ` Fabio Porcedda
2014-11-06 17:53     ` Thomas Petazzoni
2014-11-06 18:03       ` Fabio Porcedda
2014-11-11 15:26         ` Fabio Porcedda
2014-11-11 15:37       ` Yann E. MORIN
2014-11-11 15:39         ` Fabio Porcedda
2014-11-24 14:04           ` Fabio Porcedda

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