From 974d8e47f105fa20234e01b014aab7545f6c6426 Mon Sep 17 00:00:00 2001 From: Zingo Andersen Date: Fri, 20 Dec 2024 08:50:39 +0100 Subject: [PATCH] Arm backend: Fix memory mode for Ethos-U85 This fix a minor typo that made run.sh not work for Ethos-U85 if no --memory_mode was specified. Signed-off-by: Zingo Andersen Change-Id: Id1b287cfbaa0d90bac36af370cf1e79689893745 --- examples/arm/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/arm/run.sh b/examples/arm/run.sh index 55b715d7388..967c7a5ba27 100755 --- a/examples/arm/run.sh +++ b/examples/arm/run.sh @@ -114,7 +114,7 @@ then memory_mode="Shared_Sram" if [[ ${target} =~ "ethos-u85" ]] then - system_config="Sram_Only" + memory_mode="Sram_Only" fi fi