diff mbox series

[VIN-Tests] scripts: boards: Support alternative H3 variant

Message ID 20200611142601.359091-1-kieran.bingham+renesas@ideasonboard.com (mailing list archive)
State Under Review
Delegated to: Geert Uytterhoeven
Headers show
Series [VIN-Tests] scripts: boards: Support alternative H3 variant | expand

Commit Message

Kieran Bingham June 11, 2020, 2:26 p.m. UTC
The Salvator-X H3 has had a rename of it's model information.
Support the new naming.

Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
---
 scripts/boards.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Kieran Bingham June 11, 2020, 3:01 p.m. UTC | #1
Hi Niklas,

On 11/06/2020 15:26, Kieran Bingham wrote:
> The Salvator-X H3 has had a rename of it's model information.
> Support the new naming.
> 
> Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
> ---
>  scripts/boards.sh | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/scripts/boards.sh b/scripts/boards.sh
> index 0ec2981..001c017 100644
> --- a/scripts/boards.sh
> +++ b/scripts/boards.sh
> @@ -3,7 +3,8 @@
>  info=$(strings /proc/device-tree/model)
>  
>  case $info in
> -    "Renesas Salvator-X board based on r8a7795 ES1.x")
> +    "Renesas Salvator-X board based on r8a7795 ES1.x" |
> +        "Renesas Salvator-X board based on r8a77950")

Sorry - not sure what happened in creating this patch, but there is
supposed to be a \ line contniuation and better indenting there...

Expect a (working) v2 soon.

--
Kieran


>          gen="gen3"
>          vins="0 1 2 3 4 5 6 7"
>          csis="20 21 40 41"
>
Jacopo Mondi June 15, 2020, 8:07 a.m. UTC | #2
Hi Kieran,

On Thu, Jun 11, 2020 at 03:26:01PM +0100, Kieran Bingham wrote:
> The Salvator-X H3 has had a rename of it's model information.
> Support the new naming.
>
> Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
> ---
>  scripts/boards.sh | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/boards.sh b/scripts/boards.sh
> index 0ec2981..001c017 100644
> --- a/scripts/boards.sh
> +++ b/scripts/boards.sh
> @@ -3,7 +3,8 @@
>  info=$(strings /proc/device-tree/model)
>
>  case $info in
> -    "Renesas Salvator-X board based on r8a7795 ES1.x")
> +    "Renesas Salvator-X board based on r8a7795 ES1.x" |
> +        "Renesas Salvator-X board based on r8a77950")

Don't we have r8a77951 as well ?

Thanks
  j

>          gen="gen3"
>          vins="0 1 2 3 4 5 6 7"
>          csis="20 21 40 41"
> --
> 2.1.4
>
diff mbox series

Patch

diff --git a/scripts/boards.sh b/scripts/boards.sh
index 0ec2981..001c017 100644
--- a/scripts/boards.sh
+++ b/scripts/boards.sh
@@ -3,7 +3,8 @@ 
 info=$(strings /proc/device-tree/model)
 
 case $info in
-    "Renesas Salvator-X board based on r8a7795 ES1.x")
+    "Renesas Salvator-X board based on r8a7795 ES1.x" |
+        "Renesas Salvator-X board based on r8a77950")
         gen="gen3"
         vins="0 1 2 3 4 5 6 7"
         csis="20 21 40 41"