From 20f71fafa7eca9e4697e5e20a10a817a811532ee Mon Sep 17 00:00:00 2001 From: ellensp <530024+ellensp@users.noreply.github.com> Date: Thu, 22 Aug 2024 11:33:58 +1200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB=20Use=20sim?= =?UTF-8?q?=20env=20for=20BOARD=5FSIMULATED=20in=20`mftest`=20(#27299)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buildroot/bin/mftest | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildroot/bin/mftest b/buildroot/bin/mftest index 9048d8a244..7806d37cfa 100755 --- a/buildroot/bin/mftest +++ b/buildroot/bin/mftest @@ -195,6 +195,9 @@ if ((AUTO_BUILD)); then [[ $CHOICE > $ECOUNT ]] && { echo "Environment selection out of range." ; exit 1 ; } fi TARGET="${ENVS[$CHOICE-1]}" + if [[ $MB == 'SIMULATED' && $TARGET == 'linux_native' ]]; then + TARGET="simulator_linux_release" # Skip the linux_native environment + fi echo "Selected $TARGET" fi