public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] update-u-boot-script: Fix bashism
@ 2018-08-25 11:49 Jan Kiszka
  2018-08-26  8:47 ` Jan Kiszka
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2018-08-25 11:49 UTC (permalink / raw)
  To: isar-users

From: Jan Kiszka <jan.kiszka@siemens.com>

This prevented correct detection of aarch64 targets.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 meta/recipes-bsp/u-boot-script/files/update-u-boot-script | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/u-boot-script/files/update-u-boot-script b/meta/recipes-bsp/u-boot-script/files/update-u-boot-script
index ebdc0d5..bd7a014 100755
--- a/meta/recipes-bsp/u-boot-script/files/update-u-boot-script
+++ b/meta/recipes-bsp/u-boot-script/files/update-u-boot-script
@@ -46,7 +46,7 @@ yes|1)
 esac
 
 BOOT="bootz"
-if [ "$(uname -m)" == "aarch64" ]; then
+if [ "$(uname -m)" = "aarch64" ]; then
 	BOOT="booti"
 fi
 
-- 
2.16.4

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] update-u-boot-script: Fix bashism
  2018-08-25 11:49 [PATCH] update-u-boot-script: Fix bashism Jan Kiszka
@ 2018-08-26  8:47 ` Jan Kiszka
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Kiszka @ 2018-08-26  8:47 UTC (permalink / raw)
  To: isar-users

On 2018-08-25 13:49, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
> 
> This prevented correct detection of aarch64 targets.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>   meta/recipes-bsp/u-boot-script/files/update-u-boot-script | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-bsp/u-boot-script/files/update-u-boot-script b/meta/recipes-bsp/u-boot-script/files/update-u-boot-script
> index ebdc0d5..bd7a014 100755
> --- a/meta/recipes-bsp/u-boot-script/files/update-u-boot-script
> +++ b/meta/recipes-bsp/u-boot-script/files/update-u-boot-script
> @@ -46,7 +46,7 @@ yes|1)
>   esac
>   
>   BOOT="bootz"
> -if [ "$(uname -m)" == "aarch64" ]; then
> +if [ "$(uname -m)" = "aarch64" ]; then
>   	BOOT="booti"
>   fi
>   
> 

Subject should have been "u-boot-script: Fix bashism", to address the 
package, not the script. I'll resent, along with more fixes.

Jan

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-08-26  8:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-25 11:49 [PATCH] update-u-boot-script: Fix bashism Jan Kiszka
2018-08-26  8:47 ` Jan Kiszka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox