[PATCH v3 4/4] docs: use #!/usr/bin/env python shebang instead of #!/usr/bin/python

2019-12-06 Thread Florian Klink
Some distributions might not have python in /usr/bin, but in $PATH. Using #!/usr/bin/env python solves this, and is consistent with how the other perl and python shebangs look like in the tree. Signed-off-by: Florian Klink --- Documentation/gen_commands.py | 2 +- 1 file changed, 1 insertion

[PATCH v3 1/4] scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-06 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. Signed-off-by: Florian Klink --- scripts/canon-a1100-image| 4 +++- scripts/check_size | 2

[PATCH v3 2/4] dts/scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-06 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. Signed-off-by: Florian Klink --- dts/scripts/cronjob | 2 +- dts/scripts/index-filter.sh | 2

[PATCH v3 3/4] docs: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-06 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. Signed-off-by: Florian Klink --- Documentation/user/usb.rst | 2 +- MAKEALL| 2 +- 2 files

use #!/usr/bin/env binary instead of #!/usr/bin/binary

2019-12-06 Thread Florian Klink
This adds the missing Signed-off-by Tag to all patches. Sorry for the noise. ___ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox

[PATCH v2 4/4] docs: use #!/usr/bin/env python shebang instead of #!/usr/bin/python

2019-12-05 Thread Florian Klink
Some distributions might not have python in /usr/bin, but in $PATH. Using #!/usr/bin/env python solves this, and is consistent with how the other perl and python shebangs look like in the tree. --- Documentation/gen_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/D

[PATCH v2 1/4] scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-05 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. --- scripts/canon-a1100-image| 4 +++- scripts/check_size | 2 +- scripts/dfuboot.sh

[PATCH v2 3/4] docs: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-05 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. --- Documentation/user/usb.rst | 2 +- MAKEALL| 2 +- 2 files changed, 2 insertions(+), 2 deletio

[PATCH v2 2/4] dts/scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-05 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. --- dts/scripts/cronjob | 2 +- dts/scripts/index-filter.sh | 2 +- dts/scripts/merge-new-release.s

Re: use /usr/bin/env bash shebang instead of /bin/bash

2019-12-02 Thread Florian Klink
Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. What is the exact case you are fixing with these patches? I am fine with merging them generally, I just want to understand why and where you need it. In that particular case, i

[PATCH 1/3] scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-11-27 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. --- scripts/canon-a1100-image| 2 +- scripts/check_size | 2 +- scripts/dfuboot.sh

[PATCH 2/3] dts/scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-11-27 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. --- dts/scripts/cronjob | 2 +- dts/scripts/index-filter.sh | 2 +- dts/scripts/merge-new-release.s

use /usr/bin/env bash shebang instead of /bin/bash

2019-11-27 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. ___ barebox mailing list barebox@lists.infradead.org http://lists.inf

[PATCH 3/3] docs: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-11-27 Thread Florian Klink
Some distributions might not have bash in /bin, but in $PATH. Using #!/usr/bin/env bash solves this, and is consistent with how the perl and python shebangs look like in the tree. --- Documentation/user/usb.rst | 2 +- MAKEALL| 2 +- 2 files changed, 2 insertions(+), 2 deletio