mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2025-01-25 21:31:32 +01:00
a template for further work
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
This commit is contained in:
parent
ceb598f369
commit
7f84770e50
@ -24,7 +24,9 @@
|
|||||||
SUPPORTED_ARCHITECTURES = X64|IA32
|
SUPPORTED_ARCHITECTURES = X64|IA32
|
||||||
BUILD_TARGETS = RELEASE|DEBUG
|
BUILD_TARGETS = RELEASE|DEBUG
|
||||||
SKUID_IDENTIFIER = DEFAULT
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
|
!ifndef SKIP_FLASH
|
||||||
FLASH_DEFINITION = Clover.fdf
|
FLASH_DEFINITION = Clover.fdf
|
||||||
|
!endif
|
||||||
|
|
||||||
!ifndef OPENSSL_VERSION
|
!ifndef OPENSSL_VERSION
|
||||||
DEFINE OPENSSL_VERSION = 1.0.1e
|
DEFINE OPENSSL_VERSION = 1.0.1e
|
||||||
|
@ -271,6 +271,19 @@
|
|||||||
<string>0x3E7</string>
|
<string>0x3E7</string>
|
||||||
<key>MLB</key>
|
<key>MLB</key>
|
||||||
<string>C02032109R5DC771H</string>
|
<string>C02032109R5DC771H</string>
|
||||||
|
<key>Block</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Disabled</key>
|
||||||
|
<false/>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Dell variables</string>
|
||||||
|
<key>UUID</key>
|
||||||
|
<string>FF2E9FC7-D16F-434A-A24E-C99519B7EB93</string>
|
||||||
|
<key>Name</key>
|
||||||
|
<string>*</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
<key>CPU</key>
|
<key>CPU</key>
|
||||||
<dict>
|
<dict>
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
||||||
|
|
||||||
[Components]
|
[Components]
|
||||||
Clover/DumpUefiCalls/DumpUefiCalls.inf
|
Protocols/DumpUefiCalls/DumpUefiCalls.inf
|
||||||
|
|
||||||
|
|
||||||
[PcdsFixedAtBuild]
|
[PcdsFixedAtBuild]
|
||||||
|
@ -6179,6 +6179,18 @@ GetUserSettings(
|
|||||||
if (Prop != NULL && AsciiStrLen (Prop->string) > 0) {
|
if (Prop != NULL && AsciiStrLen (Prop->string) > 0) {
|
||||||
AsciiStrCpyS (gSettings.BooterCfgStr, 64, Prop->string);
|
AsciiStrCpyS (gSettings.BooterCfgStr, 64, Prop->string);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Prop = GetProperty (DictPointer, "Block");
|
||||||
|
if (Prop != NULL) {
|
||||||
|
INTN i, Count = GetTagCount (Prop);
|
||||||
|
for (i = 0; i < Count; i++) {
|
||||||
|
EFI_STATUS Status = GetElement (Prop, i, &Dict);
|
||||||
|
if (!EFI_ERROR(Status)) {
|
||||||
|
Prop2 = GetProperty (Dict, "Comment");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gSettings.RtROM == NULL) {
|
if (gSettings.RtROM == NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user