Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Masahiro YAMADA
Hi Tom, 2014-07-31 3:04 GMT+09:00 Tom Rini : > Arg. Do you want me to fold / rework things like that or do you want to > post a v9 of just this patch, adapted as you've shown? Either is fine for me. If you were about to apply v8 (I saw you are doing one last build check now), could you rewo

Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Masahiro YAMADA
Tom, > > Arg. Do you want me to fold / rework things like that or do you want to > post a v9 of just this patch, adapted as you've shown? > Either is fine for me. But if you were about to apply v8 (it looks like you are doing the final test), could you rework things, please? No more updates f

Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Tom Rini
On Wed, Jul 30, 2014 at 02:04:50PM -0400, Tom Rini wrote: > On Thu, Jul 31, 2014 at 02:54:43AM +0900, Masahiro YAMADA wrote: > > Hi Tom, > > > > > > 2014-07-30 23:24 GMT+09:00 Tom Rini : > > > > > > The function subprocess.check_output() only exists in Python 2.7 and > > > later (and there are lo

Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Tom Rini
On Thu, Jul 31, 2014 at 02:54:43AM +0900, Masahiro YAMADA wrote: > Hi Tom, > > > 2014-07-30 23:24 GMT+09:00 Tom Rini : > > > > The function subprocess.check_output() only exists in Python 2.7 and > > later (and there are long term supported distributions that ship with > > 2.6.x). Replace this w

Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Masahiro YAMADA
Hi Tom, 2014-07-30 23:24 GMT+09:00 Tom Rini : > > The function subprocess.check_output() only exists in Python 2.7 and > later (and there are long term supported distributions that ship with > 2.6.x). Replace this with a call to subprocess.Popen() and then checking > output via communicate() Un

Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Tom Rini
On Wed, Jul 30, 2014 at 04:46:32PM +0100, Simon Glass wrote: > Hi Tom, > > On 30 July 2014 15:24, Tom Rini wrote: > > The function subprocess.check_output() only exists in Python 2.7 and > > later (and there are long term supported distributions that ship with > > 2.6.x). Replace this with a ca

Re: [U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Simon Glass
Hi Tom, On 30 July 2014 15:24, Tom Rini wrote: > The function subprocess.check_output() only exists in Python 2.7 and > later (and there are long term supported distributions that ship with > 2.6.x). Replace this with a call to subprocess.Popen() and then checking > output via communicate() > >

[U-Boot] [PATCH] tools/genboardscfg.py: Don't rely on subprocess.check_output

2014-07-30 Thread Tom Rini
The function subprocess.check_output() only exists in Python 2.7 and later (and there are long term supported distributions that ship with 2.6.x). Replace this with a call to subprocess.Popen() and then checking output via communicate() Signed-off-by: Tom Rini --- tools/genboardscfg.py |9 +