Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1257531 > unrolled thread
| Started by | Olof Johansson <olof@lixom.net> |
|---|---|
| First post | 2015-10-28 01:50 +0100 |
| Last post | 2015-10-28 07:00 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 02/10] merge_config.sh: print warnings on stderr Olof Johansson <olof@lixom.net> - 2015-10-28 01:50 +0100
Re: [PATCH 02/10] merge_config.sh: print warnings on stderr Darren Hart <dvhart@infradead.org> - 2015-10-28 07:00 +0100
| From | Olof Johansson <olof@lixom.net> |
|---|---|
| Date | 2015-10-28 01:50 +0100 |
| Subject | [PATCH 02/10] merge_config.sh: print warnings on stderr |
| Message-ID | <qon6a-3PX-29@gated-at.bofh.it> |
Makes it easier to grab just errors/warnings in a build log. Signed-off-by: Olof Johansson <olof@lixom.net> --- scripts/kconfig/merge_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/kconfig/merge_config.sh b/scripts/kconfig/merge_config.sh index d8cd913..0e98619 100755 --- a/scripts/kconfig/merge_config.sh +++ b/scripts/kconfig/merge_config.sh @@ -131,7 +131,7 @@ for MERGE_FILE in $MERGE_LIST ; do echo Value of $CFG is redundant by fragment $MERGE_FILE: fi sed -i "/$CFG[ =]/d" $TMP_FILE - done + done >&2 cat $MERGE_FILE >> $TMP_FILE done @@ -168,7 +168,7 @@ for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do echo "Requested value: $REQUESTED_VAL" echo "Actual value: $ACTUAL_VAL" echo "" - fi + fi >&2 done clean_up -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Darren Hart <dvhart@infradead.org> |
|---|---|
| Date | 2015-10-28 07:00 +0100 |
| Message-ID | <qorWa-70n-9@gated-at.bofh.it> |
| In reply to | #1257531 |
On Wed, Oct 28, 2015 at 09:42:03AM +0900, Olof Johansson wrote: > Makes it easier to grab just errors/warnings in a build log. > > Signed-off-by: Olof Johansson <olof@lixom.net> I think this is the right change, I just want to make sure Bruce (Cc'd) sees it for linux-yocto. Reviewed-by: Darren Hart <dvhart@linux.intel.com> > --- > scripts/kconfig/merge_config.sh | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/scripts/kconfig/merge_config.sh b/scripts/kconfig/merge_config.sh > index d8cd913..0e98619 100755 > --- a/scripts/kconfig/merge_config.sh > +++ b/scripts/kconfig/merge_config.sh > @@ -131,7 +131,7 @@ for MERGE_FILE in $MERGE_LIST ; do > echo Value of $CFG is redundant by fragment $MERGE_FILE: > fi > sed -i "/$CFG[ =]/d" $TMP_FILE > - done > + done >&2 > cat $MERGE_FILE >> $TMP_FILE > done > > @@ -168,7 +168,7 @@ for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do > echo "Requested value: $REQUESTED_VAL" > echo "Actual value: $ACTUAL_VAL" > echo "" > - fi > + fi >&2 > done > > clean_up > -- > 2.1.4 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- Darren Hart Intel Open Source Technology Center -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web