From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 03D511A1E05 for ; Thu, 6 Oct 2016 12:12:07 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga101.fm.intel.com with ESMTP; 06 Oct 2016 12:12:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,454,1473145200"; d="scan'208";a="16958335" Received: from asagi-mobl1.amr.corp.intel.com (HELO mdkinney-MOBL.amr.corp.intel.com) ([10.254.78.24]) by fmsmga006.fm.intel.com with ESMTP; 06 Oct 2016 12:12:07 -0700 From: Michael Kinney To: edk2-devel@lists.01.org Date: Thu, 6 Oct 2016 12:12:00 -0700 Message-Id: <1475781125-1472-1-git-send-email-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.6.3.windows.1 Subject: [Patch 0/5] QuarkPlatformPkg: Fix BOOT_IN_RECOVERY_MODE issues X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Oct 2016 19:12:08 -0000 This patch series addresses the following 3 issues in Bugzilla: https://bugzilla.tianocore.org/show_bug.cgi?id=137 https://bugzilla.tianocore.org/show_bug.cgi?id=138 https://bugzilla.tianocore.org/show_bug.cgi?id=139 It also removes a function and library that are no longer used. Cc: Kelly Steele Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney Michael Kinney (5): QuarkPlatformPkg/ForceRecovery: Add UEFI application to force recovery QuarkPlatformPkg/PlatformInit: Fix recovery detection issues QuarkPlatformPkg/PlatformHelperLib: Remove PlatformDebugPortGetChar8() QuarkPlatformPkg: Add ForceRecovery UEFI application QuarkPlatformPkg/RecoveryOemHookLib: Remove RecoveryOemHookLib .../Application/ForceRecovery/ForceRecovery.c | 53 ++++++++++ .../Application/ForceRecovery/ForceRecovery.inf | 39 +++++++ .../Include/Library/PlatformHelperLib.h | 16 +-- .../Include/Library/RecoveryOemHookLib.h | 45 --------- .../Library/PlatformHelperLib/PlatformHelperLib.c | 27 ----- .../Library/RecoveryOemHookLib/CommonHeader.h | 30 ------ .../RecoveryOemHookLib/RecoveryOemHookLib.c | 61 ----------- .../RecoveryOemHookLib/RecoveryOemHookLib.inf | 49 --------- .../Platform/Pei/PlatformInit/BootMode.c | 89 ++++++---------- .../Platform/Pei/PlatformInit/CommonHeader.h | 4 +- .../Platform/Pei/PlatformInit/MrcWrapper.c | 112 +-------------------- .../Platform/Pei/PlatformInit/MrcWrapper.h | 11 +- .../Platform/Pei/PlatformInit/PlatformEarlyInit.c | 67 +++++++++++- .../Pei/PlatformInit/PlatformEarlyInit.inf | 1 - QuarkPlatformPkg/Quark.dsc | 6 +- QuarkPlatformPkg/QuarkMin.dsc | 1 - 16 files changed, 196 insertions(+), 415 deletions(-) create mode 100644 QuarkPlatformPkg/Application/ForceRecovery/ForceRecovery.c create mode 100644 QuarkPlatformPkg/Application/ForceRecovery/ForceRecovery.inf delete mode 100644 QuarkPlatformPkg/Include/Library/RecoveryOemHookLib.h delete mode 100644 QuarkPlatformPkg/Library/RecoveryOemHookLib/CommonHeader.h delete mode 100644 QuarkPlatformPkg/Library/RecoveryOemHookLib/RecoveryOemHookLib.c delete mode 100644 QuarkPlatformPkg/Library/RecoveryOemHookLib/RecoveryOemHookLib.inf -- 2.6.3.windows.1