|
How to generate .gcda files
2 messages
Hello, everyone Does any one know how to generate .gcda file in EDK2 for unit test. I want to get .gcda files from EDK2 so that I can use lcov to calculate the unit test coverage. I searched .gcda fil
Hello, everyone Does any one know how to generate .gcda file in EDK2 for unit test. I want to get .gcda files from EDK2 so that I can use lcov to calculate the unit test coverage. I searched .gcda fil
|
By
wenyi,xie
·
|
|
回复: [edk2-discuss] Guid.xref file
Guid.xref includes all Guid/Ppi/Protocol guid and module FILE_GUID in one platform DSC/FDF. If Guid is generated into AutoGen, it should be included in Guid.xref. Thanks Liming > -----邮件原件----- > 发件人:
Guid.xref includes all Guid/Ppi/Protocol guid and module FILE_GUID in one platform DSC/FDF. If Guid is generated into AutoGen, it should be included in Guid.xref. Thanks Liming > -----邮件原件----- > 发件人:
|
By
gaoliming
·
|
|
Guid.xref file
2 messages
Hello! Sometimes it's useful to transform GUID values to their names from the codebase. For example when you investigate the boot log. Usually I just use key/value pairs from the generated build file
Hello! Sometimes it's useful to transform GUID values to their names from the codebase. For example when you investigate the boot log. Usually I just use key/value pairs from the generated build file
|
By
Konstantin Aladyshev
·
|
|
Different methods for declaring UNI files
2 messages
Hello! I was investigating EDKII database and have found 3 ways of declaring UNI files: 1) Sources section within the INF file: ``` [Sources] InventoryStrings.uni VfrStrings.uni ... ``` Example: https
Hello! I was investigating EDKII database and have found 3 ways of declaring UNI files: 1) Sources section within the INF file: ``` [Sources] InventoryStrings.uni VfrStrings.uni ... ``` Example: https
|
By
Konstantin Aladyshev
·
|
|
Coreboot+UEFI to boot Linux -memory issue
Hi, I am able to boot Linux using (coreboot+ TianoCore). however Kernel always see the total available memory as 2GB only. I feel coreboot pass the memory information to UEFI payload, which forwarded
Hi, I am able to boot Linux using (coreboot+ TianoCore). however Kernel always see the total available memory as 2GB only. I feel coreboot pass the memory information to UEFI payload, which forwarded
|
By
Ghorai, Sukumar
·
|
|
Some codes in EDKII do not obey the EDK II C Coding Standards Specification
Hello there, I am new to EDKII and reading some standards published by the EDKII project. There is a item that says, 5.6.1.2 The use of int, unsigned, char, void, static, long is a violation of the co
Hello there, I am new to EDKII and reading some standards published by the EDKII project. There is a item that says, 5.6.1.2 The use of int, unsigned, char, void, static, long is a violation of the co
|
By
than1@...
·
|
|
Make HII browser engine render faster and change font Size in HII
Dear Liming What a pitty that edk2 cannot change font size natively. Thanks for your response, anyway Kiet
Dear Liming What a pitty that edk2 cannot change font size natively. Thanks for your response, anyway Kiet
|
By
Kiet Pham
·
|
|
回复: [edk2-discuss] Make HII browser engine render faster and change font Size in HII
Kiet: Each font is specified as EFI_NARROW_GLYPH that has a preferred dimension (w x h) of 8 x 19 pixels. So, font size is not changed. Thanks Liming > -----邮件原件----- > 发件人: discuss@edk2.groups.io <di
Kiet: Each font is specified as EFI_NARROW_GLYPH that has a preferred dimension (w x h) of 8 x 19 pixels. So, font size is not changed. Thanks Liming > -----邮件原件----- > 发件人: discuss@edk2.groups.io <di
|
By
gaoliming
·
|
|
a question about X509 flag
3 messages
Hello, I have a question about flag set in X509_STORE. Does anyone know why need to set flags X509_V_FLAG_PARTIAL_CHAIN and X509_V_FLAG_NO_CHECK_TIME to X509Store in TlsNew() (CryptoPkg\Library\TlsLib
Hello, I have a question about flag set in X509_STORE. Does anyone know why need to set flags X509_V_FLAG_PARTIAL_CHAIN and X509_V_FLAG_NO_CHECK_TIME to X509Store in TlsNew() (CryptoPkg\Library\TlsLib
|
By
wenyi,xie
·
|
|
Make HII browser engine render faster and change font Size in HII
Hello All, I'm currently develop BIOS Setup Utilities. The monitor resolution is too big 1920 x 1080 so when I try to set BIOS setup full screen, it took short but noticeable render time to render the
Hello All, I'm currently develop BIOS Setup Utilities. The monitor resolution is too big 1920 x 1080 so when I try to set BIOS setup full screen, it took short but noticeable render time to render the
|
By
Kiet Pham
·
|
|
Writing to QemuVideoDxe Framebuffer after sleep
I have been working with the Xen platform, and while I have gotten sleep working, I have run into a bug that I need help understanding. We use our own PV drivers for display, and if we disable the dri
I have been working with the Xen platform, and while I have gotten sleep working, I have run into a bug that I need help understanding. We use our own PV drivers for display, and if we disable the dri
|
By
Joel
·
|
|
EDK2 Shell does not work on headless machine
Hi, I'm trying to use the EDK2 shell on my old machine to side-load an NVMe DXE driver (with a startup.nsh) for grub to be able to boot / chainload OSes on an NVMe drive. The plan works, except that i
Hi, I'm trying to use the EDK2 shell on my old machine to side-load an NVMe DXE driver (with a startup.nsh) for grub to be able to boot / chainload OSes on an NVMe drive. The plan works, except that i
|
By
tom.ty89@...
·
|
|
History of Driver/Features in edk2-platforms
2 messages
Was curious if there was a reason why the top level drivers and features code was added into edk2-platforms instead of edk2 or a new repo. These modules seem different than the rest of the code in edk
Was curious if there was a reason why the top level drivers and features code was added into edk2-platforms instead of edk2 or a new repo. These modules seem different than the rest of the code in edk
|
By
Jeff Brasen
·
|
|
MicroPythonPkg: How to import/compile uefi module?
Hi, following the instructions on https://github.com/tianocore/edk2-staging/tree/MicroPythonTestFramework/MicroPythonPkg , I can successfully run micropython.efi (using VS2015x86 instead of VS2017). H
Hi, following the instructions on https://github.com/tianocore/edk2-staging/tree/MicroPythonTestFramework/MicroPythonPkg , I can successfully run micropython.efi (using VS2015x86 instead of VS2017). H
|
By
Buhrow, Simon
·
|
|
PCI-Express version 1.1 doesn't support link training error
Hi, I'm working with PCI-Express diagnostics on UEFI using edk2. On PCI-Express Base Specification 1.0a there's a bit defined as "Link Training Error" on "Link Status Register (Offset 12h)". Specs fro
Hi, I'm working with PCI-Express diagnostics on UEFI using edk2. On PCI-Express Base Specification 1.0a there's a bit defined as "Link Training Error" on "Link Status Register (Offset 12h)". Specs fro
|
By
giovane.anhaia@...
·
|
|
UefiPayloadPkg: assert error in PeiPcdLib
5 messages
Hi, Using coreboot 4.14 + UefiPayloadPkg the following error is shown: ASSERT_EFI_ERROR (Status = Not Found) ASSERT [PeiCore] /work/edk2/edk2-orig/MdePkg/Library/PeiPcdLib/PeiPcdLib.c(43): !EFI_ERROR
Hi, Using coreboot 4.14 + UefiPayloadPkg the following error is shown: ASSERT_EFI_ERROR (Status = Not Found) ASSERT [PeiCore] /work/edk2/edk2-orig/MdePkg/Library/PeiPcdLib/PeiPcdLib.c(43): !EFI_ERROR
|
By
King Sumo
·
|
|
Build failures Windows10, VS2019
4 messages
Friends, Does anyone have a link to a single and consistent description of a build of edk2 starting from scratch on a new Windows 10 machine using the python BaseTools etc? The several recipes I have
Friends, Does anyone have a link to a single and consistent description of a build of edk2 starting from scratch on a new Windows 10 machine using the python BaseTools etc? The several recipes I have
|
By
dss.v1.0@...
·
|
|
回复: [edk2-discuss] Build failures Windows10, VS2019
Have you full build log? You can check whether VfrCompile is compiled from BaseTools source code or not. Thanks Liming > -----邮件原件----- > 发件人: discuss@edk2.groups.io <discuss@edk2.groups.io> 代表 Matthe
Have you full build log? You can check whether VfrCompile is compiled from BaseTools source code or not. Thanks Liming > -----邮件原件----- > 发件人: discuss@edk2.groups.io <discuss@edk2.groups.io> 代表 Matthe
|
By
gaoliming
·
|
|
回复: [edk2-discuss] edk2 build error
12 messages
Please don't use the binary base tools. They are not maintained. Before you build, please make sure EDK_TOOLS_BIN be not set. Thanks Liming > -----邮件原件----- > 发件人: discuss@edk2.groups.io <discuss@edk2
Please don't use the binary base tools. They are not maintained. Before you build, please make sure EDK_TOOLS_BIN be not set. Thanks Liming > -----邮件原件----- > 发件人: discuss@edk2.groups.io <discuss@edk2
|
By
gaoliming
·
|
|
running lastest OVMF(secure boot+smm) with stock QEMU ( Ubintu 20.04)
4 messages
Hello All. I am playing with OVMF and want to run lastest Ubuntu 20.04 ISO disk, booting it securely from OVMF. I've got lastest edk2 repository, and have it built with options for secure_boot and smm
Hello All. I am playing with OVMF and want to run lastest Ubuntu 20.04 ISO disk, booting it securely from OVMF. I've got lastest edk2 repository, and have it built with options for secure_boot and smm
|
By
alys
·
|