From: srs5694 Date: Sat, 17 May 2014 12:59:33 +0000 (-0400) Subject: Changed "deep_uefi_legacy_scan" name to "uefi_deep_legacy_scan". X-Git-Url: https://code.delx.au/refind/commitdiff_plain/57d3fd65f57a9947245a5ecc504c6b06cf17c58f Changed "deep_uefi_legacy_scan" name to "uefi_deep_legacy_scan". --- diff --git a/docs/refind/configfile.html b/docs/refind/configfile.html index 2fa7a34..bbc306d 100644 --- a/docs/refind/configfile.html +++ b/docs/refind/configfile.html @@ -313,7 +313,7 @@ timeout 20 Tells rEFInd what methods to use to locate boot loaders. The internal, external, and optical parameters tell rEFInd to scan for EFI boot loaders on internal, external, and optical (CD, DVD, and Blu-ray) devices, respectively. The hdbios, biosexternal, and cd parameters are similar, but scan for BIOS boot loaders. (Note that the BIOS options scan more thoroughly and actively on Macs than on UEFI-based PCs; for the latter, only options in the firmware's boot list are scanned, as described on the Using rEFInd page.) The manual parameter tells rEFInd to scan the configuration file for manual settings. You can specify multiple parameters to have the program scan for multiple boot loader types. When you do so, the order determines the order in which the boot loaders appear in the menu. The default is internal, external, optical, manual on most systems, but internal, hdbios, external, biosexternal, optical, cd, manual on Macs. - deep_uefi_legacy_scan + uefi_deep_legacy_scan none or one of true, on, 1, false, off, or 0 Tells rEFInd how aggressively to scan for BIOS/CSM/legacy boot loaders on UEFI-based PCs. Ordinarily or if this option is set to false, off, or 0, rEFInd presents only those options that were available in the NVRAM when it launched. When uncommented with no option or with true, on, or 1 set, rEFInd adds every possible BIOS-mode boot device (of types specified by scanfor) as a BIOS/CSM/legacy boot option. This latter behavior is sometimes required to detect USB flash drives or hard disks beyond the first one. diff --git a/refind.conf-sample b/refind.conf-sample index e06c5c3..9355a1f 100644 --- a/refind.conf-sample +++ b/refind.conf-sample @@ -209,12 +209,12 @@ timeout 20 # By default, rEFInd relies on the UEFI firmware to detect BIOS-mode boot # devices. This sometimes doesn't detect all the available devices, though. -# For these cases, deep_uefi_legacy_scan results in a forced scan and +# For these cases, uefi_deep_legacy_scan results in a forced scan and # modification of NVRAM variables on each boot. Adding "0", "off", or # "false" resets to the default value. This token has no effect on Macs or # when no BIOS-mode options are set via scanfor. -# Default is unset (or "deep_uefi_legacy_scan true") -#deep_uefi_legacy_scan +# Default is unset (or "uefi_deep_legacy_scan true") +#uefi_deep_legacy_scan # Delay for the specified number of seconds before scanning disks. # This can help some users who find that some of their disks diff --git a/refind/config.c b/refind/config.c index bb5a53d..0901815 100644 --- a/refind/config.c +++ b/refind/config.c @@ -510,7 +510,7 @@ VOID ReadConfig(CHAR16 *FileName) GlobalConfig.ScanFor[i] = ' '; } - } else if (StriCmp(TokenList[0], L"deep_uefi_legacy_scan") == 0) { + } else if (StriCmp(TokenList[0], L"uefi_deep_legacy_scan") == 0) { GlobalConfig.DeepLegacyScan = HandleBoolean(TokenList, TokenCount); } else if ((StriCmp(TokenList[0], L"scan_delay") == 0) && (TokenCount == 2)) {