Re: [U-Boot] [PATCH] binman: Explicitly request python2 instead of python from env

2017-03-02 Thread Simon Glass
Hi, On 27 February 2017 at 09:26, Tom Rini wrote: > On Wed, Feb 22, 2017 at 10:25:38AM -0500, Tom Rini wrote: >> On Thu, Feb 23, 2017 at 12:25:48AM +1100, Jonathan Gray wrote: >> > On Mon, Feb 20, 2017 at 07:41:34PM +0100, Paul Kocialkowski wrote: >> > > We now live in a world where python cannot

Re: [U-Boot] [PATCH] binman: Explicitly request python2 instead of python from env

2017-02-27 Thread Tom Rini
On Wed, Feb 22, 2017 at 10:25:38AM -0500, Tom Rini wrote: > On Thu, Feb 23, 2017 at 12:25:48AM +1100, Jonathan Gray wrote: > > On Mon, Feb 20, 2017 at 07:41:34PM +0100, Paul Kocialkowski wrote: > > > We now live in a world where python cannot be assumed to be python2. > > > As a matter of fact, it

Re: [U-Boot] [PATCH] binman: Explicitly request python2 instead of python from env

2017-02-22 Thread Tom Rini
On Thu, Feb 23, 2017 at 12:25:48AM +1100, Jonathan Gray wrote: > On Mon, Feb 20, 2017 at 07:41:34PM +0100, Paul Kocialkowski wrote: > > We now live in a world where python cannot be assumed to be python2. > > As a matter of fact, it is no longer the default for python on many > > GNU/Linux distribu

Re: [U-Boot] [PATCH] binman: Explicitly request python2 instead of python from env

2017-02-22 Thread Jonathan Gray
On Mon, Feb 20, 2017 at 07:41:34PM +0100, Paul Kocialkowski wrote: > We now live in a world where python cannot be assumed to be python2. > As a matter of fact, it is no longer the default for python on many > GNU/Linux distributions. > > Running binman with python3 fails, so explicitly request py

Re: [U-Boot] [PATCH] binman: Explicitly request python2 instead of python from env

2017-02-21 Thread Simon Glass
On 20 February 2017 at 11:41, Paul Kocialkowski wrote: > We now live in a world where python cannot be assumed to be python2. > As a matter of fact, it is no longer the default for python on many > GNU/Linux distributions. > > Running binman with python3 fails, so explicitly request python2 from >

[U-Boot] [PATCH] binman: Explicitly request python2 instead of python from env

2017-02-20 Thread Paul Kocialkowski
We now live in a world where python cannot be assumed to be python2. As a matter of fact, it is no longer the default for python on many GNU/Linux distributions. Running binman with python3 fails, so explicitly request python2 from env in the shebang for running it. Signed-off-by: Paul Kocialkows