I think adding BdsDxe into the subject might be good: IntelFrameworkModulePkg/BdsDxe: Control OsIndications for capsules with a FeaturePcd
On 2015-04-10 12:01:43, Peter Jones wrote: > This patch makes the EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED bit > in OsIndicationsSupported be set when > gEfiMdeModulePkgTokenSpaceGuid.PcdSupportCapsuleResultVar is TRUE. > > This allows a platform package to determine whether that bit gets set > depending on which module packages are selected during the build. > You might want to Cc the package maintainers here. (Maintainers.txt) Similar comments could apply to some other patches in the series... > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Peter Jones <[email protected]> > --- > IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf | 1 + > IntelFrameworkModulePkg/Universal/BdsDxe/BdsEntry.c | 3 +++ > 2 files changed, 4 insertions(+) > > diff --git a/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf > b/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf > index d8b845f..c7c9eb1 100644 > --- a/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf > +++ b/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf > @@ -181,6 +181,7 @@ > gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES > > [FeaturePcd] > + gEfiMdeModulePkgTokenSpaceGuid.PcdSupportCapsuleResultVar ## CONSUMES > gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate ## CONSUMES > gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## CONSUMES > gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootlogoOnlyEnable ## CONSUMES > diff --git a/IntelFrameworkModulePkg/Universal/BdsDxe/BdsEntry.c > b/IntelFrameworkModulePkg/Universal/BdsDxe/BdsEntry.c > index ae7ad21..265b936 100644 > --- a/IntelFrameworkModulePkg/Universal/BdsDxe/BdsEntry.c > +++ b/IntelFrameworkModulePkg/Universal/BdsDxe/BdsEntry.c > @@ -412,6 +412,9 @@ BdsFormalizeEfiGlobalVariable ( > // > OsIndicationSupport = EFI_OS_INDICATIONS_BOOT_TO_FW_UI \ > | EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED; > + if (FeaturePcdGet(PcdSupportCapsuleResultVar)) { > + OsIndicationSupport |= EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED; > + } > > BdsDxeSetVariableAndReportStatusCodeOnError ( > L"OsIndicationsSupported", > -- > 2.3.5 > ------------------------------------------------------------------------------ BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with the BPMN 2 standard Learn Process modeling best practices with Bonita BPM through live exercises http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_ source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF _______________________________________________ edk2-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/edk2-devel
