From 5db4f85a7eb2262e44411ef8c5872acc99140d01 Mon Sep 17 00:00:00 2001 From: Stefan Eichenberger Date: Thu, 9 Feb 2023 17:29:23 +0100 Subject: [PATCH] machine_select: Add stellantis vcu3 Add the Stellantis version of the VCU3 --- machine_select | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/machine_select b/machine_select index 258bde0..a1c64ae 100755 --- a/machine_select +++ b/machine_select @@ -15,9 +15,10 @@ HW24="hw24 - NB800 facelift" HW25="hw25 - TC Router" HW26="hw26 - NG800" VCU3="ZF - VCU3" +VCU3_ST="ZF - VCU3 Stellantis" set -a -select opt in "$HW16" "$HW18" "$HW20" "$HW21" "$HW23" "$HW24" "$HW25" "$HW26" "$VCU3" +select opt in "$HW16" "$HW18" "$HW20" "$HW21" "$HW23" "$HW24" "$HW25" "$HW26" "$VCU3" "$VCU3_ST" do case $opt in "$HW16") @@ -56,6 +57,10 @@ do MACHINE=s32g274a-vcu3 break ;; + "$VCU3_ST") + MACHINE=s32g274a-vcu3-stellantis + break + ;; *) echo "invalid option $opt";; esac done