|
Re: [PATCH v1 3/3] OvmfPkg/X86QemuLoadImageLib: State fw_cfg dependency in file header
+1
By
Ard Biesheuvel
·
#76329
·
|
|
Re: [PATCH v1 2/3] OvmfPkg/GenericQemuLoadImageLib: Read cmdline from QemuKernelLoaderFs
Hello Dov,
Could we please use a better name here? 'QemuKernel' is confusing as
it is used for initrd and cmdline only, in this case, right?
'QemuKernelLoader' is better in this regard, or other
Hello Dov,
Could we please use a better name here? 'QemuKernel' is confusing as
it is used for initrd and cmdline only, in this case, right?
'QemuKernelLoader' is better in this regard, or other
|
By
Ard Biesheuvel
·
#76328
·
|
|
Re: [PATCH v2 2/3] UefiPayloadPkg: Add PayloadLoaderPeim which can load ELF payload
By
Ni, Ray
·
#76327
·
|
|
Re: [PATCH v2 2/3] UefiPayloadPkg: Add PayloadLoaderPeim which can load ELF payload
FWIW, I strongly agree with Marvin on this: having ParseStatus in its current form is a bad idea since it adds no value but does incur a cost.
Thanks,
Michael
FWIW, I strongly agree with Marvin on this: having ParseStatus in its current form is a bad idea since it adds no value but does incur a cost.
Thanks,
Michael
|
By
Michael Brown
·
#76326
·
|
|
Re: [PATCH v2 2/3] UefiPayloadPkg: Add PayloadLoaderPeim which can load ELF payload
I don't need to be okay with anything, I'm not a maintainer nor an authority. But I gave my opinion, which is that it is dead code that makes the design/flow harder to understand for a third party, at
I don't need to be okay with anything, I'm not a maintainer nor an authority. But I gave my opinion, which is that it is dead code that makes the design/flow harder to understand for a third party, at
|
By
Marvin Häuser <mhaeuser@...>
·
#76325
·
|
|
Re: [Patch V4 0/9] Create multiple Hobs for Universal Payload
Liming,
Bugzilla is created at https://bugzilla.tianocore.org/show_bug.cgi?id=3447
Thanks
Zhiguang
Liming,
Bugzilla is created at https://bugzilla.tianocore.org/show_bug.cgi?id=3447
Thanks
Zhiguang
|
By
Zhiguang Liu
·
#76324
·
|
|
Re: [PATCH v2 2/3] UefiPayloadPkg: Add PayloadLoaderPeim which can load ELF payload
I assume you are ok with the ParseStatus.
I will send new version based on mail discussion. Thanks!
I assume you are ok with the ParseStatus.
I will send new version based on mail discussion. Thanks!
|
By
Ni, Ray
·
#76323
·
|
|
回复: [edk2-devel] [PATCH v1 0/8] Measured SEV boot with kernel/initrd/cmdline
Dov:
Can you submit one BZ for this new feature? I will add it into edk2 202108 stable tag planning.
Thanks
Liming
Dov:
Can you submit one BZ for this new feature? I will add it into edk2 202108 stable tag planning.
Thanks
Liming
|
By
gaoliming
·
#76322
·
|
|
回复: [edk2-devel] [Patch V4 0/9] Create multiple Hobs for Universal Payload
Zhiguang:
Can you submit one BZ for this new feature? I will add it into edk2 202108 stable tag planning.
Thanks
Liming
Zhiguang:
Can you submit one BZ for this new feature? I will add it into edk2 202108 stable tag planning.
Thanks
Liming
|
By
gaoliming
·
#76321
·
|
|
[edk2-test][PATCH 1/1] SctPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246
MdeLibs.dsc.inc was added for some basic/default library
instances provided by MdePkg, RegisterFilterLibNull which will be
consumed by IoLib
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246
MdeLibs.dsc.inc was added for some basic/default library
instances provided by MdePkg, RegisterFilterLibNull which will be
consumed by IoLib
|
By
Gao Jie
·
#76320
·
|
|
Re: [PATCH v2 2/3] UefiPayloadPkg: Add PayloadLoaderPeim which can load ELF payload
If ParseElfImage() is not called, nothing will initialize ParseStatus and the load function will read random data. If AllocateZeroPool was used for the context, a common pattern throughout the
If ParseElfImage() is not called, nothing will initialize ParseStatus and the load function will read random data. If AllocateZeroPool was used for the context, a common pattern throughout the
|
By
Marvin Häuser <mhaeuser@...>
·
#76319
·
|
|
[PATCH] MdeModulePkg/RegularExpressionDxe: Fix memory assert in FreePool()
Memory buffer that is allocated by malloc() and realloc() will be
shifted by 8 bytes because Oniguruma keeps its memory signature. This 8
bytes shift is not handled while calling free() to release
Memory buffer that is allocated by malloc() and realloc() will be
shifted by 8 bytes because Oniguruma keeps its memory signature. This 8
bytes shift is not handled while calling free() to release
|
By
Nickle Wang
·
#76318
·
|
|
Re: [Patch V3] UefiPayloadPkg: Use DynamicEx instead of Dynamic to pass PCD across binary
Hi Guo,
Thanks for the comments.
I described the reason in the V2 commint message:
Explicitly define some PCDs as DynamicEx, or their default type will be Dynamic
Thanks
Zhiguang
Hi Guo,
Thanks for the comments.
I described the reason in the V2 commint message:
Explicitly define some PCDs as DynamicEx, or their default type will be Dynamic
Thanks
Zhiguang
|
By
Zhiguang Liu
·
#76317
·
|
|
Re: [PATCH v2 2/3] UefiPayloadPkg: Add PayloadLoaderPeim which can load ELF payload
Caller might call LoadElfImage() without firstly calling ParseElfImage() by mistake.
ParseStatus is added to catch such mistake.
I don't trust the caller would follow the contracts properly😊.
Caller might call LoadElfImage() without firstly calling ParseElfImage() by mistake.
ParseStatus is added to catch such mistake.
I don't trust the caller would follow the contracts properly😊.
|
By
Ni, Ray
·
#76316
·
|
|
Re: [Patch V3] UefiPayloadPkg: Use DynamicEx instead of Dynamic to pass PCD across binary
This patch 1) changed PCD type from Dynamic to DynamicEX 2) added 3 PCDs.
It would be great if you could describe why 3 PCDs are added in the commit message.
With that:
Reviewed-by: Guo Dong
This patch 1) changed PCD type from Dynamic to DynamicEX 2) added 3 PCDs.
It would be great if you could describe why 3 PCDs are added in the commit message.
With that:
Reviewed-by: Guo Dong
|
By
Guo Dong
·
#76315
·
|
|
Re: [Patch V4 9/9] UefiPayloadPkg: Creat gPldAcpiTableGuid Hob
Reviewed-by: Guo Dong <guo.dong@...>
Reviewed-by: Guo Dong <guo.dong@...>
|
By
Guo Dong
·
#76314
·
|
|
Re: [Patch V4 6/9] UefiPayloadPkg: Creat gPldSmbiosTableGuid Hob
Reviewed-by: Guo Dong <guo.dong@...>
Reviewed-by: Guo Dong <guo.dong@...>
|
By
Guo Dong
·
#76313
·
|
|
Re: [Patch V3 5/9] MdeModulePkg/Universal/SmbiosDxe: Scan for existing tables
Hi Patrick
Thanks for catching this issue.
I updated the code, and you can find the code below
https://github.com/LiuZhiguang001/edk2/tree/UniversalPayloadHeaders_v4
Please help
Hi Patrick
Thanks for catching this issue.
I updated the code, and you can find the code below
https://github.com/LiuZhiguang001/edk2/tree/UniversalPayloadHeaders_v4
Please help
|
By
Zhiguang Liu
·
#76312
·
|
|
[Patch V3] UefiPayloadPkg: Get platform specific logic from protocol for BDS driver
V1:
Currently, BDS driver will link a PlatformBootManagerLib, which contains pl=
atform
sepcific logic. This patch get the platform specific logic from a protocol,=
so that
platform logic for Boot
V1:
Currently, BDS driver will link a PlatformBootManagerLib, which contains pl=
atform
sepcific logic. This patch get the platform specific logic from a protocol,=
so that
platform logic for Boot
|
By
Zhiguang Liu
·
#76311
·
|
|
[PATCH v1 1/1] Pytool: SpellCheck: Fix incorrect file mask across package matrices
From: Sean Brogan <spbrogan@...>
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3443
Existing implementation could modify class global data that causes
potential incorrect file mask to be
From: Sean Brogan <spbrogan@...>
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3443
Existing implementation could modify class global data that causes
potential incorrect file mask to be
|
By
Kun Qin
·
#76310
·
|