From db6a30cb5dbbe1ff94b2caaf27a61f5aec51ce71 Mon Sep 17 00:00:00 2001 From: srs5694 Date: Wed, 17 Jul 2013 22:50:32 -0400 Subject: [PATCH] Misc. small changes. --- NEWS.txt | 2 ++ docs/refind/secureboot.html | 2 +- docs/refind/themes.html | 4 +++- mok/mok.c | 2 +- mok/mok.h | 1 + refind/global.h | 1 + refind/main.c | 3 +-- 7 files changed, 10 insertions(+), 5 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index 67278a8..0b98e76 100644 --- 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. diff --git a/docs/refind/secureboot.html b/docs/refind/secureboot.html index 6a84604..f020805 100644 --- a/docs/refind/secureboot.html +++ b/docs/refind/secureboot.html @@ -144,7 +144,7 @@ href="mailto:rodsmith@rodsbooks.com">rodsmith@rodsbooks.com

  • Managing Your MOKs
  • -
  • Using rEFInd with PreLoader
  • +
  • Using rEFInd with PreLoader
  • Secure Boot Caveats
  • diff --git a/docs/refind/themes.html b/docs/refind/themes.html index 05cac3c..d558e44 100644 --- a/docs/refind/themes.html +++ b/docs/refind/themes.html @@ -15,7 +15,7 @@ href="mailto:rodsmith@rodsbooks.com">rodsmith@rodsbooks.com

    Originally written: 4/19/2012; last Web page update: -7/8/2013, referencing rEFInd 0.7.1

    +7/11/2013, referencing rEFInd 0.7.1

    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!

    @@ -276,6 +276,8 @@ to be tedious.

  • The Mac theme was created by Wesley Turner-Harris. See Wesley's Web site if you want to contact the creator of this theme.
  • +
  • Evan Purkhiser's Minimal theme uses black icons on a gray background of varied brightness.
  • +

    If you've created or discovered another rEFInd theme, please tell me about it so that I can provide a link to it from this page.

    diff --git a/mok/mok.c b/mok/mok.c index 2ea9b95..3948b08 100644 --- 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 diff --git a/mok/mok.h b/mok/mok.h index 7648209..eca991b 100644 --- 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 diff --git a/refind/global.h b/refind/global.h index 82772f2..419ed8a 100644 --- a/refind/global.h +++ b/refind/global.h @@ -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 diff --git a/refind/main.c b/refind/main.c index 499d133..250ff1b 100644 --- a/refind/main.c +++ b/refind/main.c @@ -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; } -- 2.39.2