Dies ist eine mobil optimierte Seite, die schnell lädt. Wenn Sie die Seite ohne Optimierung laden möchten, dann klicken Sie auf diesen Text.

Support Audi RMC Navigation

now you have a procman_conf again watch next reboot
omg my eyes...
its progman_core
do mv /etc/procman_conf.cfg /etc/progman_core.cfg
 
Zuletzt bearbeitet:
after reboot and mv command

Du musst Regestriert sein, um das angehängte Bild zusehen.
 

Anhänge

Du musst angemeldet sein, um die Anhangsliste zu sehen.
Zuletzt bearbeitet von einem Moderator:
can you do the cat command again pls with the right filename,
its wired after execute no output = works but now is no file there
you can do echo "$?" the exit code from the command before, should be 0 (works)
and ls /etc/procman_core.cfg to ensure the file is there
its a korn shell... you also can try it with bash or sh
simply type bash or sh to open a instance
 
Zuletzt bearbeitet:
c'est bon !!!!!!!

big big thanks to you !

now if i want to activate nav and maps, what should i do ?
 
Zuletzt bearbeitet:
nice
save your backup folder on your PC
extract the content of Support - Audi RMC Navigation zip in the root on your sd-card
den Inhalt vom Support - Audi RMC Navigation zip direkt auf die sd-Karte entpacken
im script je nach hw version die passenden Zeilen nehmen und die GRO zeile anpassen
Bei ging jede sd bzgl. CID, habe kein green menu gebraucht, allerdings die esd auch kopiert

Danke @benji9 für die basis version des scripts habs nur angepasst für das archiv

Bash:
# Backup
cp -cfRV /dat/ /sdc1/backup/
cp -cfRV /etc/engdefs/ /sdc1/backup/engdefs/
cp -fV /etc/procman_core.cfg /sdc1/backup/
cp -fV /home/delphi/SWPolicy /sdc1/backup/
cat /dev/fs0 > /sdc1/backup/rmc_fs0.bin

# Navigation Activation (Q3 & A1)
rm -V /dat/FSCFiles.xml
rm -V /dat/FSCStatus.xml
rm -V /dat/FSCHistory.xml
cp -fV /sdc1/Nav_activation_A1_Q3/*.xml /dat/

#cp off and map activate patch:
# if hw version 50 - 59:
cp -fV /sdc1/Map_activation_with_cp_off_rmc2/procman_core.cfg /etc/procman_core.cfg
cp -fV /sdc1/Map_activation_with_cp_off_rmc2/SWPolicy /home/delphi/SWPolicy
# if hw version < 61:
cp -fV /sdc1/Map_activation_with_cp_off_rmc4/procman_core.cfg /etc/procman_core.cfg
cp -fV /sdc1/Map_activation_with_cp_off_rmc4/SWPolicy /home/delphi/SWPolicy
# you will find the version on top of the rmc

# In this file you need to write the unit fazit id then replace
# e.g. GRO-633XX.XX.XXXXXXXXXX
echo -e GRO-633XX.XX.XXXXXXXXXX >> /dat/el/el.dat
you will find the GRO on top of the rmc

# SD CID Patch:
cp -fV /sdc1/SD_CID_Patch.esd /etc/engdefs/
# in green menu (Menu+Car) last option cid: enable/disable

# reboot RMC
shutdown
 
Zuletzt bearbeitet:
my rmc is h61
we are ok, it's an rmc 4 ?
is there a command to launch the script ? or should i enter line by line ? because it's hard to see in putty what we are doing because text write continuously
 
Zuletzt bearbeitet:
yes rmc4
dont launch it complete, i dont known where i can check which hw version and you have to edit the GRO line
 
If I modify like this, is it OK?

Bash:
# Backup
cp -cfRV /dat/ /sdc1/backup/
cp -cfRV /etc/engdefs/ /sdc1/backup/engdefs/
cp -fV /etc/procman_core.cfg /sdc1/backup/
cp -fV /home/delphi/SWPolicy /sdc1/backup/
cat /dev/fs0 > /sdc1/backup/rmc_fs0.bin

# Navigation Activation (Q3 & A1)
rm -V /dat/FSCFiles.xml
rm -V /dat/FSCStatus.xml
rm -V /dat/FSCHistory.xml
cp -fV /sdc1/Nav_activation_A1_Q3/*.xml /dat/

#cp off and map activate patch:
# if hw version < 61:
cp -fV /sdc1/Map_activation_with_cp_off_rmc4/procman_core.cfg /etc/procman_core.cfg
cp -fV /sdc1/Map_activation_with_cp_off_rmc4/SWPolicy /etc/SWPolicy
# you will find the version on top of the rmc

# In this file you need to write the unit fazit id then replace
# e.g. GRO-633XX.XX.XXXXXXXXXX
echo -e GRO-63315.12.1500280019 >> /dat/el/el.dat

# SD CID Patch:
cp -fV /sdc1/SD_CID_Patch.esd /etc/engdefs/
# in green menu (Menu+Car) last option cid: enable/disable

# reboot RMC
shutdown

Is there a command for launch this script ?
 
looks good for me
save it in a file with a name you want like "script" put it on sd and execute sh /sdc1/script
 
i try and it looks like rmc don't want copy from sd card. curiously backup on sd card is ok.
an idea ?
Du musst Regestriert sein, um das angehängte Bild zusehen.
 

Anhänge

Du musst angemeldet sein, um die Anhangsliste zu sehen.
Zuletzt bearbeitet von einem Moderator:
i extract the file rmc_solution.zip on sd like this :
Du musst Regestriert sein, um das angehängte Bild zusehen.
I think it' correct, and with the script i use, there is, i think no probems :
Code:
#!/bin/sh

# Backup
cp -cfRV /dat/ /sdc1/backup/; sleep 1
cp -cfRV /etc/engdefs/ /sdc1/backup/engdefs/; sleep 1
cp -fV /etc/procman_core.cfg /sdc1/backup/; sleep 1
cp -fV /home/delphi/SWPolicy /sdc1/backup/; sleep 1
cat /dev/fs0 > /sdc1/backup/rmc_fs0.bin; sleep 1
echo "Backup files - OK"

# Navigation Activation (Q3 & A1)
rm -V /dat/FSCFiles.xml; sleep 1
rm -V /dat/FSCStatus.xml; sleep 1
rm -V /dat/FSCHistory.xml; sleep 1
cp -fV /sdc1/Nav_activation_A1_Q3/*.xml /dat/; sleep 1
echo "Navigation Activation - OK"

#cp off and map activate patch:
# if hw version < 61:
cp -fV /sdc1/Map_activation_with_cp_off_rmc4/procman_core.cfg /etc/procman_core.cfg; sleep 1
cp -fV /sdc1/Map_activation_with_cp_off_rmc4/SWPolicy /etc/SWPolicy; sleep 1
# you will find the version on top of the rmc
echo "CP Off and Map Activate - OK"

# In this file you need to write the unit fazit id then replace
# e.g. GRO-633XX.XX.XXXXXXXXXX
echo -e GRO-63315.12.1500280019 >> /dat/el/el.dat; sleep 1
echo "Replace Fazit ID - OK"

# SD CID Patch:
cp -fV /sdc1/SD_CID_Patch.esd /etc/engdefs/; sleep 1
# in green menu (Menu+Car) last option cid: enable/disable
echo "SID CID patch - OK"

# reboot RMC
echo "REBOOT, enjoy"
shutdown

with the script , cp not works from sd card, and if i try line after line individualy, it's the same problem, not works.
in the previous post the return for the command cp which copy SID_Patch file, but it's the same for others cp commands, subfolder or not ...

It looks like the rmc don't accept cp command to copy from sd to rmc.
But curiously, cp command for backup rmc on sd card is ok...
and rm command for delete files in rmc ok too because i think it's for that i have the crash yesterday. I had delete procaman_core.cfg successfully but unable to cp the new one... until you helped me.


Maybe mv commands should be ok ?
or cat EOF ?
 

Anhänge

Du musst angemeldet sein, um die Anhangsliste zu sehen.
Zuletzt bearbeitet:
hmmm
the cat <<EOF works only for plain text, binary like the swDelphi will not work
do df -h > /sdc1/info.txt
echo "#########" >> /sdc1/info.txt ls -al /sdc1/ >> /sdc1/info.txt
will create a file (info.txt) on your sd, post this pls
 
here is the result :

Code:
/dev/fs0p1                   30M       29M      559K      99%  /               
/dev/blk/ram-0-allo         1.0M      292K      732K      29%  /fs/tmpfs/      
/dev/sdc0t12                973M      7.9M      965M       1%  /sdc1/          
/dev/mmc0t179               500M       32M      467M       7%  /mmc_pers/      
/dev/mmc0t178               300M       93M      207M      32%  /mmc_apps/      
/dev/mmc0t177               900M      433M      467M      49%  /mmc_lng/       
/dev/fs0p5                  768K       79K      689K      11%  /dat            
/dev/fs0p3                  768K      160K      608K      21%  /home           
/dev/sdc0                   977M      977M         0     100%                  
/dev/cd0                       0         0         0     100%                  
/dev/mmc0                   1.8G      1.8G         0     100%                  
#########
total 1160
drwxrwxrwx  7 root      root           4096 Jan 01 00:00 .
drwxrwxrwx  7 root      root           4096 Jan 01 00:00 ..
-rwxrwxrwx  1 root      root           2362 Mar 19  2020 2020_map_act_odis_E.xml
-rwxrwxrwx  1 root      root         416967 Aug 04  2020 Audi q3 A1 map & navi activation.pdf
-rwxrwxrwx  1 root      root          81456 Apr 02  2020 HowTo.jfif
-rwxrwxrwx  1 root      root            435 Aug 14  2020 Instructions.txt
drwxrwxrwx  2 root      root           4096 Mar 24  2021 Map_activation_with_cp_off_rmc2
drwxrwxrwx  2 root      root           4096 Mar 24  2021 Map_activation_with_cp_off_rmc4
drwxrwxrwx  2 root      root           4096 Mar 24  2021 Nav_activation_A1_Q3
-rwxrwxrwx  1 root      root          58222 Apr 04  2020 RNS Uart.jfif
-rwxrwxrwx  1 root      root             90 Mar 19  2020 SD_CID_Patch.esd
drwxrwxrwx  2 root      root           4096 Feb 13  2022 System Volume Information
dr-xr-xr-x  5 root      root           4096 Jan 01  1980 backup
-rwxrwxrwx  1 root      root            890 Jan 01  1980 info.txt
-rwxrwxrwx  1 root      root              0 Jan 01  1980 info.txtdf
-rwxrwxrwx  1 root      root           1278 Aug 12  2022 script.sh
-rwxrwxrwx  1 root      root           1467 Aug 12  2022 script2.sh
 
looks all fine, you can try:
reload the archive
reformat the sd (slow)
try other sd-card reader
ensure to use Safely remove hardware > right bottom corner on desktop
 
Für die Nutzung dieser Website sind Cookies erforderlich. Du musst diese akzeptieren, um die Website weiter nutzen zu können. Erfahre mehr…