]> code.delx.au - refind/commitdiff
Changed "deep_uefi_legacy_scan" name to "uefi_deep_legacy_scan".
authorsrs5694 <srs5694@users.sourceforge.net>
Sat, 17 May 2014 12:59:33 +0000 (08:59 -0400)
committersrs5694 <srs5694@users.sourceforge.net>
Sat, 17 May 2014 12:59:33 +0000 (08:59 -0400)
docs/refind/configfile.html
refind.conf-sample
refind/config.c

index 2fa7a34a62cf8328b37f1016c208438e5a9405ba..bbc306d014382c0e8758e54e2d05c18d5fb843b6 100644 (file)
@@ -313,7 +313,7 @@ timeout 20
    <td>Tells rEFInd what methods to use to locate boot loaders. The <tt>internal</tt>, <tt>external</tt>, and <tt>optical</tt> parameters tell rEFInd to scan for EFI boot loaders on internal, external, and optical (CD, DVD, and Blu-ray) devices, respectively. The <tt>hdbios</tt>, <tt>biosexternal</tt>, and <tt>cd</tt> 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 <a href="using.html">Using rEFInd</a> page.) The <tt>manual</tt> 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 <tt>internal, external, optical, manual</tt> on most systems, but <tt>internal, hdbios, external, biosexternal, optical, cd, manual</tt> on Macs.</td>
 </tr>
 <tr>
-   <td><tt>deep_uefi_legacy_scan</tt></td>
+   <td><tt>uefi_deep_legacy_scan</tt></td>
    <td>none or one of <tt>true</tt>, <tt>on</tt>, <tt>1</tt>, <tt>false</tt>, <tt>off</tt>, or <tt>0</tt></td>
    <td>Tells rEFInd how aggressively to scan for BIOS/CSM/legacy boot loaders on UEFI-based PCs. Ordinarily or if this option is set to <tt>false</tt>, <tt>off</tt>, or <tt>0</tt>, rEFInd presents only those options that were available in the NVRAM when it launched. When uncommented with no option or with <tt>true</tt>, <tt>on</tt>, or <tt>1</tt> set, rEFInd adds every possible BIOS-mode boot device (of types specified by <tt>scanfor</tt>) 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.</td>
 </tr>
index e06c5c3eb39d74641db239950d6e64e5f1fcfc6c..9355a1fc273dffa68b3a35b790446bb56d48358d 100644 (file)
@@ -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
index bb5a53d076c6a2f65f501a5b36c28d9064d8faf4..09018159a8184bbfb4523c1406923d853ca41e30 100644 (file)
@@ -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)) {