Moin wie sieht es aus kann man die FW normal als Standard installieren und die Navi karte auch oder gibt’s bei der FW auch Probleme mit Bose wie beim 3GP das man die benutzerdefiniert flashen soll? und die Karte Standard oder benutzerdefiniert?
This script has the same "bug" that keldo script, in line 49 you check if "mmelauncher.cfg.orig" exist, and later you copy the original file to mmelauncher.cfg.pre-navdb.bak
Code:
if ! test -a /etc/mmelauncher.cfg.orig ; then
# just keep original version - so just do this the first time
/bin/mv /etc/mmelauncher.cfg /etc/mmelauncher.cfg.pre-navdb.bak
fi
If you run the script two or more times, you'll overwrite the original backup, the correct code must be:
Code:
if ! test -a /etc/mmelauncher.cfg.pre-navdb.bak ; then
# just keep original version - so just do this the first time
/bin/mv /etc/mmelauncher.cfg /etc/mmelauncher.cfg.pre-navdb.bak
fi
That checks for "mmelauncher.cfg.pre-navdb.bak" file instead of ".orig" file, so you never will overwrite the original.
Das Script wurde diesbezüglich auch schon abgeändert
Üpdate 6.24.2 (2017) beim MMI 3G High inklusive Activator-Script gemacht und kann es nur bestätigen...funktioniert super
Danke an alle für die super Arbeit