Advertisement
scenep2p

Untitled

Mar 2nd, 2024
240
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.29 KB | None | 1 0
  1. On Garmin navigators, models nuvi 55/56/65/66/25x9/26x9, zumo 590, GPSMAP 64, Edge 1000 etc. a different protection method is used, the functionality of unlocked maps from a distribution depends on the version of the firmware installed in the device, in most cases it will be necessary to patch it so that the navigator can use unlocked maps from a given distribution, otherwise it will display the error “Cannot Authenticate Maps”
  2. Navigators of the Drive, DriveSmart 52,55,65,66,71,76,86, Zumo XT, Alpha 200i, Montana 700 models cannot currently be patched , because their firmware is encrypted.
  3. The program and instructions (English) for patching firmware can be downloaded here or a topic on the forum (Russian).
  4. Materials on the correct installation of files from the distribution into the navigator can be found at links [1] , [2] and [3] .
  5. To determine which paths, map files and additional files from the "Additional Files" folder your device supports, you need to open the garmindevice.xml file in the Garmin folder, in the internal memory of the device, and press CTRL-F and look for the lines below. If the line is in your file, then the device supports the path\function.
  6.  
  7.  
  8. earch strings inside the garmindevice.xml file
  9. Main map paths
  10. Code:
  11. <DataType>
  12. <Name>PreProgrammedMaps</Name>
  13. <File>
  14. <Specification>
  15. <Identifier>IMG</Identifier>
  16. </Specification>
  17. <Location>
  18. <Path>.System</Path> <- Internal Path
  19. <BaseName>gmapprom</BaseName> <- Map Name
  20. <FileExtension>img</FileExtension> <- Extension of Map
  21. <Extensions>
  22. <dtlx:DataTypeLocationExtension>
  23. <dtlx:ExternalPath>Garmin/</dtlx:ExternalPath> <- External Path (microSD)
  24. </dtlx:DataTypeLocationExtension>
  25. </Extensions>
  26. </Location>
  27. <TransferDirection>InputOutput</TransferDirection>
  28. </File>
  29. </DataType>
  30. Additional map paths
  31. Code:
  32. <DataType>
  33. <Name>SupplementalMaps</Name>
  34. <File>
  35. <Specification>
  36. <Identifier>IMG</Identifier>
  37. </Specification>
  38. <Location>
  39. <Path>Map</Path>
  40. <BaseName>gmapsupp</BaseName>
  41. <FileExtension>img</FileExtension>
  42. <Extensions>
  43. <dtlx:DataTypeLocationExtension>
  44. <dtlx:ExternalPath>Garmin/</dtlx:ExternalPath>
  45. </dtlx:DataTypeLocationExtension>
  46. </Extensions>
  47. </Location>
  48. <TransferDirection>InputOutput</TransferDirection>
  49. </File>
  50. </DataType>
  51. Junction View (JCV)
  52. Code:
  53. <DataType>
  54. <Name>PreProgrammedLaneAssistPortraitFull</Name> <- Name/Type of File
  55. <File>
  56. <Specification>
  57. <Identifier>JCV</Identifier>
  58. </Specification>
  59. <Location>
  60. <Path>.System/JCV</Path> <- Internal Path
  61. <FileExtension>jcv</FileExtension>
  62. <Extensions>
  63. <dtlx:DataTypeLocationExtension>
  64. <dtlx:ExternalPath>Garmin/JCV/</dtlx:ExternalPath> <- External Path (microSD)
  65. </dtlx:DataTypeLocationExtension>
  66. </Extensions>
  67. </Location>
  68. <TransferDirection>InputOutput</TransferDirection>
  69. </File>
  70. </DataType>
  71. Checking Unicode map support
  72. Code:
  73. <DataType>
  74. <Name>UnicodeMaps</Name>
  75. <File>
  76. <Specification>
  77. <Identifier>IMG</Identifier>
  78. </Specification>
  79. Checking support for the 3DBuilding Map function (gmap3d file)
  80. Code:
  81. <Path>.System</Path>
  82. <FileName>gmap3d.img</FileName>
  83. </UpdateFile>
  84. Support for SID files (additional functions Address Point, Address Search, Foursquare Map, InstaSearch, Parkopedia, ASR, etc.)
  85. Code:
  86. <DataType>
  87. <Name>InstaSearch</Name>
  88. <File>
  89. <Specification>
  90. <Identifier>INSTASEARCH</Identifier>
  91. </Specification>
  92. <Location>
  93. <Path>.System/SID</Path>
  94. <FileExtension>sid</FileExtension>
  95. </Location>
  96. <TransferDirection>InputOutput</TransferDirection>
  97. </File>
  98. </DataType>
  99. ...
  100. <DataType>
  101. <Name>CountryStateSearch</Name>
  102. <File>
  103. <Specification>
  104. <Identifier>CBX</Identifier>
  105. </Specification>
  106. <Location>
  107. <Path>.System/SQLite</Path>
  108. <FileExtension>db</FileExtension>
  109. </Location>
  110. <TransferDirection>InputOutput</TransferDirection>
  111. </File>
  112. </DataType>
  113.  
  114.  
  115.  
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement