diff --git a/machine_select b/machine_select index a1c64ae..64b8dc6 100755 --- a/machine_select +++ b/machine_select @@ -16,9 +16,10 @@ HW25="hw25 - TC Router" HW26="hw26 - NG800" VCU3="ZF - VCU3" VCU3_ST="ZF - VCU3 Stellantis" +VCU3_ST_B2="ZF - VCU3 Stellantis B2" set -a -select opt in "$HW16" "$HW18" "$HW20" "$HW21" "$HW23" "$HW24" "$HW25" "$HW26" "$VCU3" "$VCU3_ST" +select opt in "$HW16" "$HW18" "$HW20" "$HW21" "$HW23" "$HW24" "$HW25" "$HW26" "$VCU3" "$VCU3_ST" "$VCU3_ST_B2"; do case $opt in "$HW16") @@ -61,6 +62,10 @@ do MACHINE=s32g274a-vcu3-stellantis break ;; + "$VCU3_ST_B2") + MACHINE=s32g274a-vcu3-stellantis-b2 + break + ;; *) echo "invalid option $opt";; esac done