X-Git-Url: https://code.delx.au/refind/blobdiff_plain/f0db0ad762ff705bf5663b2ee1356508f7fc9265..39f21d099c9fb310bae28b54dc68d266ed610ed7:/refind/config.c diff --git a/refind/config.c b/refind/config.c index 441d2a4..63d0f31 100644 --- a/refind/config.c +++ b/refind/config.c @@ -341,6 +341,7 @@ VOID ReadConfig(CHAR16 *FileName) REFIT_FILE File; CHAR16 **TokenList; CHAR16 *FlagName; + CHAR16 *SelfPath = NULL; UINTN TokenCount, i; // Set a few defaults only if we're loading the default file. @@ -350,11 +351,16 @@ VOID ReadConfig(CHAR16 *FileName) // MyFreePool(GlobalConfig.DontScanVolumes); // GlobalConfig.DontScanVolumes = StrDuplicate(L" "); MyFreePool(GlobalConfig.DontScanDirs); - GlobalConfig.DontScanDirs = StrDuplicate(SelfDirPath); + if (SelfVolume->VolName) { + SelfPath = StrDuplicate(SelfVolume->VolName); + } else { + SelfPath = AllocateZeroPool(256 * sizeof(CHAR16)); + SPrint(SelfPath, 255, L"fs%d", SelfVolume->VolNumber); + } // if/else + MergeStrings(&SelfPath, SelfDirPath, L':'); + GlobalConfig.DontScanDirs = SelfPath; MyFreePool(GlobalConfig.DontScanFiles); GlobalConfig.DontScanFiles = StrDuplicate(DONT_SCAN_FILES); -// egGetScreenSize(&GlobalConfig.RequestedScreenWidth, &GlobalConfig.RequestedScreenHeight); -// GlobalConfig.RequestedTextMode = ST->ConOut->Mode->Mode; } if (!FileExists(SelfDir, FileName)) {