machine_select: Add stellantis vcu3

Add the Stellantis version of the VCU3
This commit is contained in:
Stefan Eichenberger 2023-02-09 17:29:23 +01:00
parent f9cac0d428
commit 5db4f85a7e
1 changed files with 6 additions and 1 deletions

View File

@ -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