This is an automated email from Gerrit. Marek Vasut ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5439
-- gerrit commit 528d250260542b40b8ce2d881717df04a0bf4a79 Author: Marek Vasut <[email protected]> Date: Thu Feb 6 12:17:13 2020 +0100 tcl/target: Abort on invalid SoC selection on R-Car Gen3 Instead of printing error message and continue, abort on invalid SoC selection right away. Change-Id: I9c7a7111b590c6c49a0826562380b881a162a8dc Signed-off-by: Marek Vasut <[email protected]> diff --git a/tcl/target/renesas_rcar_gen3.cfg b/tcl/target/renesas_rcar_gen3.cfg index 2c478b2..34c1918 100644 --- a/tcl/target/renesas_rcar_gen3.cfg +++ b/tcl/target/renesas_rcar_gen3.cfg @@ -76,7 +76,7 @@ switch $_soc { set _boot_core CA53 } default { - echo "'$_soc' is invalid!" + error "'$_soc' is invalid!" } } -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
