]> code.delx.au - refind/commitdiff
Misc. small changes.
authorsrs5694 <srs5694@users.sourceforge.net>
Thu, 18 Jul 2013 02:50:32 +0000 (22:50 -0400)
committersrs5694 <srs5694@users.sourceforge.net>
Thu, 18 Jul 2013 02:50:32 +0000 (22:50 -0400)
NEWS.txt
docs/refind/secureboot.html
docs/refind/themes.html
mok/mok.c
mok/mok.h
refind/global.h
refind/main.c

index 67278a83c6ba64f0a761b32ff1d97870b6ef4202..0b98e76eb45603db2bbe1e0e9caac3e1056209ba 100644 (file)
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,6 +1,8 @@
 0.7.2 (?/??/2013):
 ------------------
 
+- Added icon for Funtoo Linux.
+
 - Fixed reading of volume icons from user-specified icons directory, which
   was broken.
 
index 6a84604e9de8ebd1270f8c9427acf9830fb37418..f02080572119e3a9505b0fabfc45f71d2f1dd1fa 100644 (file)
@@ -144,7 +144,7 @@ href="mailto:rodsmith@rodsbooks.com">rodsmith@rodsbooks.com</a></p>
     <li class="tight"><a href="#mok">Managing Your MOKs</a></li>
     </ul>
 
-<li class="tight"><a href="#PreLoader">Using rEFInd with PreLoader</a></li>
+<li class="tight"><a href="#preloader">Using rEFInd with PreLoader</a></li>
 
 <li class="tight"><a href="#caveats">Secure Boot Caveats</a></li>
 
index 05cac3c4cbade9253fe61412004e54dbb99f1592..d558e44a9fd29cbb87f46b01307020da18a6917e 100644 (file)
@@ -15,7 +15,7 @@
 href="mailto:rodsmith@rodsbooks.com">rodsmith@rodsbooks.com</a></p>
 
 <p>Originally written: 4/19/2012; last Web page update:
-7/8/2013, referencing rEFInd 0.7.1</p>
+7/11/2013, referencing rEFInd 0.7.1</p>
 
 
 <p>I'm a technical writer and consultant specializing in Linux technologies. This Web page is provided free of charge and with no annoying outside ads; however, I did take time to prepare it, and Web hosting does cost money. If you find this Web page useful, please consider making a small donation to help keep this site up and running. Thanks!</p>
@@ -276,6 +276,8 @@ to be tedious.</p>
 
 <li><a href="http://www.turnerharris.com/themes/refind.theme.mac.zip">The Mac theme</a> was created by Wesley Turner-Harris. See <a href="http://www.turnerharris.com/my-themes/">Wesley's Web site</a> if you want to contact the creator of this theme.</li>
 
+<li>Evan Purkhiser's <a href="https://github.com/EvanPurkhiser/rEFInd-minimal-theme">Minimal theme</a> uses black icons on a gray background of varied brightness.</li>
+
 </ul>
 
 <p>If you've created or discovered another rEFInd theme, please <a href="mailto:rodsmith@rodsbooks.com">tell me about it</a> so that I can provide a link to it from this page.</p>
index 2ea9b95c61738ecc77cd052c5a4e6e3300540083..3948b08af03d6482f70b6855c4a86ff5a5a56fe5 100644 (file)
--- a/mok/mok.c
+++ b/mok/mok.c
@@ -124,4 +124,4 @@ BOOLEAN ShimValidate (VOID *data, UINT32 size)
    }
 
    return FALSE;
-} // BOOLEAN ShimValidate()
+} // BOOLEAN ShimValidate()
\ No newline at end of file
index 7648209d5c2ec787a4a1b6b381381f870df9b31c..eca991b56bd6bb58d332d514e699e75fd090f5bb 100644 (file)
--- a/mok/mok.h
+++ b/mok/mok.h
@@ -27,3 +27,4 @@ typedef struct _SHIM_LOCK
 BOOLEAN ShimLoaded(void);
 BOOLEAN ShimValidate (VOID *data, UINT32 size);
 BOOLEAN secure_mode (VOID);
+VOID disable_secure_boot(VOID);
\ No newline at end of file
index 82772f2379f08fe844c7eded222fcb108550554a..419ed8a8a50bd7960611aac445a0c37606963942 100644 (file)
@@ -271,6 +271,7 @@ LOADER_ENTRY * MakeGenericLoaderEntry(VOID);
 LOADER_ENTRY * AddLoaderEntry(IN CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle, IN REFIT_VOLUME *Volume);
 VOID SetLoaderDefaults(LOADER_ENTRY *Entry, CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume);
 LOADER_ENTRY * AddPreparedLoaderEntry(LOADER_ENTRY *Entry);
+VOID disable_secure_boot(VOID);
 
 #endif
 
index 499d133157a234a31100918c9b92e78363c5cb31..250ff1ba63dba933fc6a1134b4bf6019c93adfba 100644 (file)
@@ -147,7 +147,7 @@ static VOID AboutrEFInd(VOID)
 
     if (AboutMenu.EntryCount == 0) {
         AboutMenu.TitleImage = BuiltinIcon(BUILTIN_ICON_FUNC_ABOUT);
-        AddMenuInfoLine(&AboutMenu, L"rEFInd Version 0.7.1.1");
+        AddMenuInfoLine(&AboutMenu, L"rEFInd Version 0.7.1.2");
         AddMenuInfoLine(&AboutMenu, L"");
         AddMenuInfoLine(&AboutMenu, L"Copyright (c) 2006-2010 Christoph Pfisterer");
         AddMenuInfoLine(&AboutMenu, L"Copyright (c) 2012-2013 Roderick W. Smith");
@@ -377,7 +377,6 @@ static EFI_STATUS RebootIntoFirmware(VOID) {
    refit_call4_wrapper(RT->ResetSystem, EfiResetCold, EFI_SUCCESS, 0, NULL);
    Print(L"Error calling ResetSystem: %r", err);
    PauseForKey();
-//   uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000);
    return err;
 }