|
[PATCH v8 07/12] ArmVirtPkg: CI: Use Fedora 35 container (Linux only)
Run all Linux based jobs in a container, using a custom Fedora 35 image (gcc 11). The image is hosted on ghcr.io and the Dockerfiles are here: https://github.com/tianocore/containers The version numbe
Run all Linux based jobs in a container, using a custom Fedora 35 image (gcc 11). The image is hosted on ghcr.io and the Dockerfiles are here: https://github.com/tianocore/containers The version numbe
|
By
Oliver Steffen
·
|
|
[PATCH v8 01/12] CI: make Python version configurable
Add a new parameter "usePythonVersion" to the CI job templates. This makes it possible to specify the version of Python to use. The default value is '', in which case Python will not be downloaded at
Add a new parameter "usePythonVersion" to the CI job templates. This makes it possible to specify the version of Python to use. The default value is '', in which case Python will not be downloaded at
|
By
Oliver Steffen
·
|
|
[PATCH v8 05/12] CI: Allow running in a container.
Add a parameter of the pr-gate-build-job template to specify a container image URL. If the value is not '' (default), then the jobs will be run inside a container based on that image. Signed-off-by: O
Add a parameter of the pr-gate-build-job template to specify a container image URL. If the value is not '' (default), then the jobs will be run inside a container based on that image. Signed-off-by: O
|
By
Oliver Steffen
·
|
|
[PATCH v8 02/12] OvmfPkg: CI: use Python version from defaults template
Use the default Python version from the defaults template (.azurepipelines/templates/defaults.yml) in the Windows CI jobs. Previous changes to the CI job templates make it necessary to specify a versi
Use the default Python version from the defaults template (.azurepipelines/templates/defaults.yml) in the Windows CI jobs. Previous changes to the CI job templates make it necessary to specify a versi
|
By
Oliver Steffen
·
|
|
[PATCH v8 03/12] EmulatorPkg: CI: use Python version from defaults template
Use the default Python version from the defaults template (.azurepipelines/templates/defaults.yml) in the Windows CI jobs. Previous changes to the CI job templates make it necessary to specify a versi
Use the default Python version from the defaults template (.azurepipelines/templates/defaults.yml) in the Windows CI jobs. Previous changes to the CI job templates make it necessary to specify a versi
|
By
Oliver Steffen
·
|
|
[PATCH v8 00/12] CI: Use Fedora 35 container for Linux jobs
Update CI, run all Linux (aka Ubuntu-GCC5) based jobs in custom containers. This decouples the CI environment from the virtual machine images that Azure DevOps provides. The currently used ubuntu-18.0
Update CI, run all Linux (aka Ubuntu-GCC5) based jobs in custom containers. This decouples the CI environment from the virtual machine images that Azure DevOps provides. The currently used ubuntu-18.0
|
By
Oliver Steffen
·
|
|
[PATCH v7 1/6] CI: make Python version configurable
4 messages
Add a new parameter "usePythonVersion" to the CI job templates. This makes it possible to specify the version of Python to use. The default value is ">=3.10.6". If '' is specified, Python will not be
Add a new parameter "usePythonVersion" to the CI job templates. This makes it possible to specify the version of Python to use. The default value is ">=3.10.6". If '' is specified, Python will not be
|
By
Oliver Steffen
·
|
|
[PATCH v7 0/6] CI: Use Fedora 35 container for Linux jobs
3 messages
Update CI, run all Linux (aka Ubuntu-GCC5) based jobs in custom containers. This decouples the CI environment from the virtual machine images that Azure DevOps provides. The currently used ubuntu-18.0
Update CI, run all Linux (aka Ubuntu-GCC5) based jobs in custom containers. This decouples the CI environment from the virtual machine images that Azure DevOps provides. The currently used ubuntu-18.0
|
By
Oliver Steffen
·
|
|
[edk2-staging][PATCH] edk2-staging/RedfishClientPkg: Fix typo
Fix typo in RedfishPlatformConfigImpl.c Signed-off-by: Nickle Wang <nicklew@...> Cc: Abner Chang <abner.chang@...> Cc: Igor Kulchytskyy <igork@...> Cc: Nick Ramirez <nramirez@...> --- .../RedfishPlatf
Fix typo in RedfishPlatformConfigImpl.c Signed-off-by: Nickle Wang <nicklew@...> Cc: Abner Chang <abner.chang@...> Cc: Igor Kulchytskyy <igork@...> Cc: Nick Ramirez <nramirez@...> --- .../RedfishPlatf
|
By
Nickle Wang
·
|
|
[PATCH v7 1/2] tools_def: remove GCC_IA32_CC_FLAGS/GCC_X64_CC_FLAGS
They are not used anywhere. Remove them. Signed-off-by: Gerd Hoffmann <kraxel@...> --- BaseTools/Conf/tools_def.template | 2 -- 1 file changed, 2 deletions(-) diff --git a/BaseTools/Conf/tools_def.tem
They are not used anywhere. Remove them. Signed-off-by: Gerd Hoffmann <kraxel@...> --- BaseTools/Conf/tools_def.template | 2 -- 1 file changed, 2 deletions(-) diff --git a/BaseTools/Conf/tools_def.tem
|
By
Gerd Hoffmann
·
|
|
[PATCH v7 0/2] Fix stack switching.
Gerd Hoffmann (2): tools_def: remove GCC_IA32_CC_FLAGS/GCC_X64_CC_FLAGS tools_def: add -fno-omit-frame-pointer to GCC48_{IA32,X64}_CC_FLAGS BaseTools/Conf/tools_def.template | 6 ++---- 1 file changed,
Gerd Hoffmann (2): tools_def: remove GCC_IA32_CC_FLAGS/GCC_X64_CC_FLAGS tools_def: add -fno-omit-frame-pointer to GCC48_{IA32,X64}_CC_FLAGS BaseTools/Conf/tools_def.template | 6 ++---- 1 file changed,
|
By
Gerd Hoffmann
·
|
|
[PATCH v1] From: Mateusz Mówka <mateusz.mowka@intel.com> Subject: [edk2-libc] Add strnlen function wrapper
3 messages
This patch adds strnlen function wrapper that internally calls AsciiStrnLenS defined in BaseLib. Signed-off-by: Mateusz Mówka <mateusz.mowka@...> --- StdLib/Include/string.h | 11 +++++++++++ StdLib/Li
This patch adds strnlen function wrapper that internally calls AsciiStrnLenS defined in BaseLib. Signed-off-by: Mateusz Mówka <mateusz.mowka@...> --- StdLib/Include/string.h | 11 +++++++++++ StdLib/Li
|
By
mateusz-mowka
·
|
|
USB: reducing/removing EHCI and XHCI logging when bulk transfer requests timeout
6 messages
I've been working on the UsbNetworkPkg drivers that Richard Ho submitted. One problem I've run into is that since we poll for bulk requests, most of the time they will timeout - and currently both EHC
I've been working on the UsbNetworkPkg drivers that Richard Ho submitted. One problem I've run into is that since we poll for bulk requests, most of the time they will timeout - and currently both EHC
|
By
Rebecca Cran
·
|
|
[PATCH v2 09/12] ShellPkg: Fix conditionally uninitialized variables
2 messages
From: Michael Kubacki <michael.kubacki@...> Fixes CodeQL alerts for CWE-457: https://cwe.mitre.org/data/definitions/457.html Cc: Erich McMillan <emcmillan@...> Cc: Michael D Kinney <michael.d.kinney@.
From: Michael Kubacki <michael.kubacki@...> Fixes CodeQL alerts for CWE-457: https://cwe.mitre.org/data/definitions/457.html Cc: Erich McMillan <emcmillan@...> Cc: Michael D Kinney <michael.d.kinney@.
|
By
Michael Kubacki
·
|
|
[PATCH] IntelSiliconPkg/VTd: Use 256-bit invaildation queue descriptor
256-bit invaildation queue descriptor could be used for both abort DMA mode and legacy mode. Signed-off-by: Sheng Wei <w.sheng@...> Cc: Ray Ni <ray.ni@...> Cc: Rangasai V Chaganty <rangasai.v.chaganty
256-bit invaildation queue descriptor could be used for both abort DMA mode and legacy mode. Signed-off-by: Sheng Wei <w.sheng@...> Cc: Ray Ni <ray.ni@...> Cc: Rangasai V Chaganty <rangasai.v.chaganty
|
By
Sheng Wei
·
|
|
[PATCH v1] [PATCH v1] UefiCpuPkg: Check SMM Delayed/Blocked AP Count to decide all CPUs in SMI or not
3 messages
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4173 The blocked register might return the counter instead of bitvector. This request is to update the code to handle the case by checking SMM Delay
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4173 The blocked register might return the counter instead of bitvector. This request is to update the code to handle the case by checking SMM Delay
|
By
Wu, Jiaxin
·
|
|
Event: TianoCore Bug Triage - APAC / NAMO - Tuesday, November 29, 2022
2 messages
#cal-reminder
Reminder: TianoCore Bug Triage - APAC / NAMO When: Tuesday, November 29, 2022 6:30pm to 7:30pm (UTC-08:00) America/Los Angeles Where: https://teams.microsoft.com/l/meetup-join/19%3ameeting_OTk1YzJhN2U
Reminder: TianoCore Bug Triage - APAC / NAMO When: Tuesday, November 29, 2022 6:30pm to 7:30pm (UTC-08:00) America/Los Angeles Where: https://teams.microsoft.com/l/meetup-join/19%3ameeting_OTk1YzJhN2U
|
By
Group Notification
·
|
|
[PATCH 1/2] ArmPkg: implement EFI_MP_SERVICES_PROTOCOL based on PSCI calls
6 messages
Add support for EFI_MP_SERVICES_PROTOCOL during the DXE phase under AArch64. PSCI_CPU_ON is called to power on the core, the supplied procedure is executed and PSCI_CPU_OFF is called to power off the
Add support for EFI_MP_SERVICES_PROTOCOL during the DXE phase under AArch64. PSCI_CPU_ON is called to power on the core, the supplied procedure is executed and PSCI_CPU_OFF is called to power off the
|
By
Rebecca Cran
·
|
|
1024 VCPU limitation
6 messages
Hi All, I am trying to run edk2 with more than 1024 VCPU. It looks like it is not possible at the moment and results in an ASSERT trigger. In the past the topic has been analyzed by Laszlo Ersek [1].
Hi All, I am trying to run edk2 with more than 1024 VCPU. It looks like it is not possible at the moment and results in an ASSERT trigger. In the past the topic has been analyzed by Laszlo Ersek [1].
|
By
Paweł Poławski
·
|
|
[PATCH 1/1] EmbeddedPkg/MetronomeDxe: Update TickPeriod doc to remove mention of lower bound
2 messages
There was previously a lower bound on the value of TickPeriod such that it couldn't be less than 10 us. However, that was removed from the PI Specification in the 1.0 errata released in 2007. From the
There was previously a lower bound on the value of TickPeriod such that it couldn't be less than 10 us. However, that was removed from the PI Specification in the 1.0 errata released in 2007. From the
|
By
Rebecca Cran
·
|