Welcome guest, is this your first visit? Click the "Create Account" button now to join.
Results 1 to 10 of 619

Hybrid View

  1. #1
    Master
    Join Date
    Nov 2017
    Location
    Romania
    Posts
    346
    Rep Power
    166

    Default

    Hello coleagues i need a little help with something:

    I have i little problem to make igo nextgen to see userdata in memory card ,it see all others folders but not userdata Loading every folders in the sdcard/ content ,but not userdata
    I managed to make userdata to be read in internal memory main folder by make an folder content and put inside only the userdata
    But i want userdata to be read from microsd/content
    Its any way to do that?
    Below its my entry in sys

    [folders]
    has_secondary_root=1
    data_folder_name="iGO_PAL"
    linked_root_list="/storage/emulated/0 /storage/MicroSD /extsd /storage/extsd0 /mnt/extsd0 /mnt/storage/extsd0 /external_sd0/mnt/sdcard/external_sd0 /mnt/external_sd0 /mnt/sdcard/external_sd /sdcard2 /sdcard /sdcard/sd /mnt/sdcard /mnt/sd /mnt /storage /mnt/extSdCard /mnt/external_sd /mnt/sdcard/external_sd /sdcard/external_sd /storage/extSdCard"
    android_secondary_root_path="/storage/6230-3232/iGO_Maps"
    content="/storage/6230-3232/iGO_Maps"

    In order to make userdata to be seen in main folder/content i have to comment this line
    content="/storage/6230-3232/iGO_Maps"------original
    like this
    ;content="/storage/6230-3232/iGO_Maps"--commented with ; semicolon

    In that way iGO see both content
    one in sdcard iGO_Maps with all folders ,less userdata
    and one in internal memory content/userdata

    But i cant make userdata to be read from microsd/iGO_Maps/content/userdata,Only the trick described above work
    Reason for that i want this its because i have iGO installed in internal memory and content on sdcard
    Im not sure if its the right way

    Thx for any advice
    Gratitude,Cristian

  2.    Advertissements


  3. #2
    Master
    Join Date
    Nov 2017
    Location
    europa
    Posts
    129
    Rep Power
    245

    Default

    hot the question is a little out of the context of the skin because it applies to any version of igo whatever its dress hot

    I hope this will allow you to better understand how some partial redirects work in the section [folders] of sys.txt

    while CONTENT can be redefined as in your message, i.e. content="/storage/6230-3232/iGO_Maps on SDCARD content="/storage/emulated/0/iGO_Maps in internal memory, it is possible to dissociate some of the sub-directories of CONTENT provided that relative paths based on the location are used from CONTENT

    [folders]
    content="/storage/emulated/0/iGO_Maps/
    userdata="userdata"
    userdata="../iGO_Maps/userdata"
    the last two lines are therefore equivalent

    [folders]
    content="/storage/emulated/0/iGO_Maps/
    userdata="../../../../storage/6230-3232/iGO_Maps/userdata"

    "../../../../" is used to reach the root folder, "storage/6230-3232/iGO_Maps/userdata" is added as relative path

    However, it will be necessary to check whether the /end for content is necessary or if igo does not automatically add it because otherwise the absolute path effective for userdata would then be
    "/storage/emulated/0/iGO_Maps//../../../../storage/6230-3232/iGO_Maps/userdata"

    // is equivalent to a level added as an unnamed subdirectory that prevents the real location of userdata
    Last edited by lunapark; 29th December 2024 at 01:18 AM.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •