Re: [U-Boot] [PATCH] scripts: fix binutils-version.sh for 'as' without a package.

2015-01-07 Thread Bill Pringlemeir
On 7 Jan 2015, yamad...@jp.panasonic.com wrote: > Thanks for your patch. > > I think this works but could it be more simplified? > > In your commit-log, you mentioned only some of tools provide > additional information surrounded by brackets. > > If so, we can > [1] remove blackets > [2] and then

Re: [U-Boot] [PATCH] scripts: fix binutils-version.sh for 'as' without a package.

2015-01-07 Thread Masahiro Yamada
Hi Bill, On Tue, 6 Jan 2015 17:38:19 -0500 Bill Pringlemeir wrote: > Commit 73c25753 fixed the common issue that binutil packages > (tool/organization > that packaged or built the bin-utils) are included in brackets and this may > falsely be recognized as a version. However, some tools do n

[U-Boot] [PATCH] scripts: fix binutils-version.sh for 'as' without a package.

2015-01-06 Thread Bill Pringlemeir
Commit 73c25753 fixed the common issue that binutil packages (tool/organization that packaged or built the bin-utils) are included in brackets and this may falsely be recognized as a version. However, some tools do not provide a 'package' and previously we add the 'Gnu assembler..' to the version.

[U-Boot] [PATCH] scripts: fix binutils-version.sh for 'as' without a package.

2015-01-06 Thread Bill Pringlemeir
Commit 73c25753 fixed the common issue that binutil packages (tool/organization that packaged or built the bin-utils) are included in brackets and this may falsely be recognized as a version. However, some tools do not provide a 'package' and previously we add the 'Gnu assembler..' to the version.

Re: [U-Boot] [PATCH] scripts: fix binutils-version.sh

2014-12-24 Thread Dirk Behme
On 25.12.2014 03:09, Masahiro Yamada wrote: The current binutils-version.sh expects the version string at the end of the first line. It turned out to not work with Linaro toolchain: It has "Linaro 2014.09" at the back. To fix this issue, let's parse the word right after the close parenthesis.

[U-Boot] [PATCH] scripts: fix binutils-version.sh

2014-12-24 Thread Masahiro Yamada
The current binutils-version.sh expects the version string at the end of the first line. It turned out to not work with Linaro toolchain: It has "Linaro 2014.09" at the back. To fix this issue, let's parse the word right after the close parenthesis. Signed-off-by: Masahiro Yamada Reported-by: Y