public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
 messages from 2020-12-16 21:26:19 to 2020-12-18 18:50:29 UTC [more...]

[PATCH v1 00/15] Extends Support of MM_STANDALONE Type Modules to X64
 2020-12-18 18:49 UTC 

[PATCH v1 01/15] StandaloneMmPkg: StandaloneMmCoreEntryPoint: Extends support for X64
 2020-12-18 18:49 UTC 

[PATCH v1 00/25] Fix Ecc reported errors in ArmPkg
 2020-12-18 18:31 UTC  (2+ messages)
` [edk2-devel] "

[PATCH v2 0/2] ArmPkg/ArmGicV3Dxe: fix writes to GICD_IPRIORITYR<n> when ARE enable
 2020-12-18 18:23 UTC  (2+ messages)

[PATCH v2] ArmPlatformPkg: Enable support for flash in 64-bit address space
 2020-12-18 18:13 UTC  (2+ messages)

[edk2 PATCH 00/48] ArmVirtPkg, OvmfPkg: virtio filesystem driver
 2020-12-18 18:13 UTC  (53+ messages)
` [edk2 PATCH 01/48] OvmfPkg: introduce VirtioFsDxe
    ` [Virtio-fs] "
` [edk2 PATCH 06/48] OvmfPkg/VirtioFsDxe: introduce the basic FUSE request/response headers
  ` [Virtio-fs] "
` [edk2 PATCH 07/48] OvmfPkg/VirtioFsDxe: map "errno" values to EFI_STATUS
` [edk2 PATCH 08/48] OvmfPkg/VirtioFsDxe: submit the FUSE_INIT request to the device
` [edk2 PATCH 09/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_OPENDIR
` [edk2 PATCH 10/48] OvmfPkg/VirtioFsDxe: add shared wrapper for FUSE_RELEASE / FUSE_RELEASEDIR
` [edk2 PATCH 11/48] OvmfPkg/VirtioFsDxe: implement EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.OpenVolume()
` [edk2 PATCH 12/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_FORGET
` [edk2 PATCH 13/48] OvmfPkg/VirtioFsDxe: add a shared wrapper for FUSE_FSYNC / FUSE_FSYNCDIR
` [edk2 PATCH 14/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_FLUSH
` [edk2 PATCH 15/48] OvmfPkg/VirtioFsDxe: flush, sync, release and forget in Close() / Delete()
` [edk2 PATCH 16/48] OvmfPkg/VirtioFsDxe: add helper for appending and sanitizing paths
` [edk2 PATCH 17/48] OvmfPkg/VirtioFsDxe: manage path lifecycle in OpenVolume, Close, Delete
` [edk2 PATCH 18/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_OPEN
` [edk2 PATCH 19/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_MKDIR
` [edk2 PATCH 20/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_CREATE
` [edk2 PATCH 21/48] OvmfPkg/VirtioFsDxe: convert FUSE inode attributes to EFI_FILE_INFO
` [edk2 PATCH 22/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_LOOKUP
` [edk2 PATCH 23/48] OvmfPkg/VirtioFsDxe: split canon. path into last parent + last component
` [edk2 PATCH 24/48] OvmfPkg/VirtioFsDxe: add a shared wrapper for FUSE_UNLINK / FUSE_RMDIR
` [edk2 PATCH 25/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_GETATTR
` [edk2 PATCH 26/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.Open()
` [edk2 PATCH 27/48] OvmfPkg/VirtioFsDxe: erase the dir. entry in EFI_FILE_PROTOCOL.Delete()
` [edk2 PATCH 28/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_STATFS
` [edk2 PATCH 29/48] OvmfPkg/VirtioFsDxe: add helper for formatting UEFI basenames
` [edk2 PATCH 30/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.GetInfo()
` [edk2 PATCH 31/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.GetPosition, .SetPosition
` [edk2 PATCH 32/48] OvmfPkg/VirtioFsDxe: add a shared wrapper for FUSE_READ / FUSE_READDIRPLUS
` [edk2 PATCH 33/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.Read() for regular files
` [edk2 PATCH 34/48] OvmfPkg/VirtioFsDxe: convert FUSE dirent filename to EFI_FILE_INFO
` [edk2 PATCH 35/48] OvmfPkg/VirtioFsDxe: add EFI_FILE_INFO cache fields to VIRTIO_FS_FILE
` [edk2 PATCH 36/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.Read() for directories
` [edk2 PATCH 37/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.Flush()
` [edk2 PATCH 38/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_WRITE
` [edk2 PATCH 39/48] OvmfPkg/VirtioFsDxe: implement EFI_FILE_PROTOCOL.Write()
` [edk2 PATCH 40/48] OvmfPkg/VirtioFsDxe: handle the volume label in EFI_FILE_PROTOCOL.SetInfo
` [edk2 PATCH 41/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_RENAME2
` [edk2 PATCH 42/48] OvmfPkg/VirtioFsDxe: add helper for composing rename/move destination path
` [edk2 PATCH 43/48] OvmfPkg/VirtioFsDxe: handle file rename/move in EFI_FILE_PROTOCOL.SetInfo
` [edk2 PATCH 44/48] OvmfPkg/VirtioFsDxe: implement the wrapper function for FUSE_SETATTR
` [edk2 PATCH 45/48] OvmfPkg/VirtioFsDxe: add helper for determining file size update
` [edk2 PATCH 46/48] OvmfPkg/VirtioFsDxe: add helper for determining access time updates
` [edk2 PATCH 47/48] OvmfPkg/VirtioFsDxe: add helper for determining file mode bits update
` [edk2 PATCH 48/48] OvmfPkg/VirtioFsDxe: handle attribute updates in EFI_FILE_PROTOCOL.SetInfo

[edk2-staging/EdkRepo] [PATCH] EdkRepo: Prevent environment variables from causing install failures
 2020-12-18 16:59 UTC  (2+ messages)
` [edk2-devel] "

[PATCH 0/9] ArmPkg: Start cleaning up ID register handling
 2020-12-18 15:36 UTC  (12+ messages)
` [PATCH 1/9] ArmPkg/ArmLib: add ArmHasGicSystemRegisters () helper function
` [PATCH 2/9] ArmPkg: use ID register helper for ArmGicArch(Sec)Lib
` [PATCH 3/9] ArmPkg: remove duplicated ARM/AArch64 ArmGicArchLib sources
` [PATCH 4/9] ArmPkg: remove duplicated ARM/AArch64 ArmGicArchSecLib sources
` [PATCH 5/9] ArmPkg: add ArmHasSecurityExtensions () helper function
` [PATCH 6/9] ArmPkg: use helper to check for Security extensions in ArmArchTimerLib
` [PATCH 7/9] ArmPkg/ArmLib: delete AArch64 version of ArmReadIdPfr1
` [PATCH 8/9] ArmPkg/ArmLib: rename AArch64 variant of ArmReadIdPfr0
` [PATCH 9/9] ArmPkg/ArmLib: move ArmReadIdPfr0/1 into private header ArmV7Lib.h

[PATCH] NetworkPkg/DxeHttpLib: Migrate HTTP header manipulation APIs
 2020-12-18  2:39 UTC 

[PATCH][edk2-platforms 0/5] Add support for RD-N2 platform
 2020-12-18 14:07 UTC  (6+ messages)
` [PATCH][edk2-platforms 1/5] Platform/ARM/SgiPkg: Use PCD for base addresses
` [PATCH][edk2-platforms 2/5] Platform/ARM/SgiPkg: remove the use of SMSC Lan91x controller
` [PATCH][edk2-platforms 3/5] Platform/ARM/SgiPkg: Define base address PCD for derivative platforms
` [PATCH][edk2-platforms 4/5] Platform/ARM/SgiPkg: Add ACPI tables for RD-N2 platform
` [PATCH][edk2-platforms 5/5] Platform/ARM/SgiPkg: Add initial support "

[PATCH v1][edk2-platforms 0/2]Platform/Arm/Sgi: Rename RdDanielCfgM and RdDanielCfgXlr platforms
 2020-12-18 13:34 UTC  (3+ messages)
` [PATCH v1][edk2-platforms 1/2] Platform/ARM/SgiPkg: Rename RdDanielCfgM to RdV1
` [PATCH v1][edk2-platforms 2/2] Platform/ARM/SgiPkg: rename RdDanielCfgXlr to RdV1Mc

[PATCH v2] OvmfPkg/PlatformBootManagerLib: fix PCI interrupt link (LNKx)
 2020-12-18 12:53 UTC  (3+ messages)
` [edk2-devel] "

[PATCH v2] RedfishPkg/DxeRestExLib: DxeRestExLib
 2020-12-18  0:22 UTC 

[PATCH] Revert "UefiCpuPkg/CpuDxe: Fix boot error"
 2020-12-18 12:10 UTC  (3+ messages)
` [edk2-devel] "

[PATCH v8 0/6] jansson edk2 port
 2020-12-18 11:19 UTC  (8+ messages)
` [PATCH v8 1/6] RedfishPkg/Ucs2Utf8lib: UCS2 to UFT8 manipulation library
` [PATCH v8 2/6] edk2: jansson submodule for edk2 JSON library
` [PATCH v8 3/6] RedfishPkg/CrtLib: C runtime library
` [PATCH v8 4/6] RedfishPkg/library: EDK2 port of jansson library
` [PATCH v8 5/6] RedfishPkg: Add EDK2 port of jansson library to build
` [PATCH v8 6/6] .pytool: Add required submodule for JsonLib

[PATCH] BaseTools: Correct report the line number in INF file issue
 2020-12-18 11:10 UTC  (2+ messages)

[PATCH] BaseTools/CommonLib.h: Build failed due to MAX_LONG_FILE_PATH
 2020-12-18 11:09 UTC  (2+ messages)

[PATCH 0/2] Update SevSecret API to work for TDX
 2020-12-18 10:49 UTC  (9+ messages)
` [PATCH 2/2] OvmfPkg/AmdSev/SecretDxe: make secret location naming generic
` [edk2-devel] [PATCH 0/2] Update SevSecret API to work for TDX

[PATCH 0/2] ArmPlatformPkg/NorFlashDxe: implement standalone MM version
 2020-12-18 10:05 UTC  (3+ messages)
` [PATCH 1/2] ArmPlatformPkg/NorFlashDxe: factor out DXE specific pieces
` [PATCH 2/2] ArmPlatformPkg/NorFlashDxe: implement standalone MM version

[PATCH 0/2] {ArmVirtPkg,OvmfPkg}/PlatformCI: stick with "ubuntu-18.04" for now
 2020-12-18 10:00 UTC  (7+ messages)
` [PATCH 1/2] ArmVirtPkg/PlatformCI: "
` [PATCH 2/2] OvmfPkg/PlatformCI: "
` [edk2-devel] [PATCH 0/2] {ArmVirtPkg,OvmfPkg}/PlatformCI: "

[PATCH] [edk2-staging] BaseTools/FMMT: Replace file failure when FV level over 2
 2020-12-18  9:33 UTC  (2+ messages)

[PATCH v6] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-18  4:50 UTC 

[PATCH] RedfishPkg/DxeRestExLib: DxeRestExLib
 2020-12-17 14:46 UTC 

[platforms: PATCH v2] SolidRun/Armada80x0McBin: Introduce SD/MMC ACPI description
 2020-12-18  1:46 UTC  (2+ messages)

[PATCH v5] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-18  1:20 UTC  (3+ messages)
` 回复: [edk2-devel] "
  `  "

[PATCH v2] BaseTools: Should always define PCD TOKEN value as Zero for static PCD
 2020-12-18  0:56 UTC  (2+ messages)
` 回复: [edk2-devel] "

[PATCH v7 0/6] jansson edk2 port
 2020-12-18  0:27 UTC  (12+ messages)
` [PATCH v7 1/6] RedfishPkg/Ucs2Utf8lib: UCS2 to UFT8 manipulation library
` [PATCH v7 2/6] edk2: jansson submodule for edk2 JSON library
` [PATCH v7 3/6] RedfishPkg/CrtLib: C runtime library
` [PATCH v7 4/6] RedfishPkg/library: EDK2 port of jansson library
    ` [edk2-devel] "

Ubuntu CI env broken
 2020-12-17 20:51 UTC 

[RFC V2] Create supported branch from edk2-stable* tag (Required to address critical bug BZ3111)
 2020-12-17 18:46 UTC  (6+ messages)
` 回复: "
  ` [EXTERNAL] "

[RFC] UnitTestFrameworkPkg cmocka submodule alternatives
 2020-12-17 18:44 UTC  (6+ messages)
` 回复: [edk2-devel] "
` [edk2-rfc] "
      ` [EXTERNAL] "

[PATCH v4 00/10] ArmPkg,MdePkg: Add Universal/Smbios, and related changes
 2020-12-17 18:19 UTC  (8+ messages)
` [PATCH v4 04/10] ArmPkg: Add helper to read the Memory Model Features Register 2

[PATCH v2 0/4] Add extra pci roots support for Arm
 2020-12-17 14:42 UTC  (9+ messages)
  ` [edk2-devel] "

[PATCH 00/12] SEV-ES security mitigations
 2020-12-17 14:23 UTC  (2+ messages)

[PATCH] Ovmf: Set matching PCI routing values in PIIX4
 2020-12-17 14:02 UTC  (4+ messages)
` [edk2-devel] "

[RFC] Create supported branch from edk2-stable* tag (Required to address critical bug BZ3111)
 2020-12-17 13:33 UTC  (6+ messages)
  ` [edk2-rfc] "

[PATCH v2 00/26] Enable Core CI support for StandaloneMmPkg
 2020-12-17 13:05 UTC  (27+ messages)
` [PATCH v2 01/26] StandaloneMmPkg: Add library header files to DEC
` [PATCH v2 02/26] StandaloneMmPkg: Add library files to DSC
` [PATCH v2 03/26] StandaloneMmPkg: Fix spell check reported errors
` [PATCH v2 04/26] StandaloneMmPkg: Fix ECC error 9002 in Core dispatcher
` [PATCH v2 05/26] StandaloneMmPkg: Fix ECC error 1001 in SMM Memory pool management
` [PATCH v2 06/26] StandaloneMmPkg: Fix ECC error 3002 in StandaloneMmCpu
` [PATCH v2 07/26] StandaloneMmPkg: Fix ECC error 4002 in FwVol helper
` [PATCH v2 08/26] StandaloneMmPkg: Fix ECC error 5007 in StandaloneMmCoreEntryPoint
` [PATCH v2 09/26] StandaloneMmPkg: Fix ECC error 5007 in StandaloneMmCpu
` [PATCH v2 10/26] StandaloneMmPkg: Fix ECC error 5007 in StandaloneMmCore
` [PATCH v2 11/26] StandaloneMmPkg: Fix ECC error 10014 in StandaloneMmCpu
` [PATCH v2 12/26] StandaloneMmPkg: Fix ECC error 4002 and 9002 in StandaloneMmCore
` [PATCH v2 13/26] StandaloneMmPkg: Fix ECC error 4002 in StandaloneMmCoreEntryPoint
` [PATCH v2 14/26] StandaloneMmPkg: Fix ECC error 9002 in StandaloneMmMemLib
` [PATCH v2 15/26] StandaloneMmPkg: Fix ECC error 9002 in StandaloneMmCoreEntryPoint
` [PATCH v2 16/26] StandaloneMmPkg: Fix ECC error 9003 "
` [PATCH v2 17/26] StandaloneMmPkg: Fix ECC error 4002 in StandaloneMmCpu
` [PATCH v2 18/26] StandaloneMmPkg: Fix ECC error 9001 "
` [PATCH v2 19/26] StandaloneMmPkg: Fix ECC error 9001 in Standalone MM Core
` [PATCH v2 20/26] StandaloneMmPkg: Fix ECC error 9002 in CoreMemoryAllocationLib
` [PATCH v2 21/26] StandaloneMmPkg: Fix ECC error 4002 in StandaloneMmCpu
` [PATCH v2 22/26] StandaloneMmPkg: Fix ECC error 8005 in StandaloneMmCoreEntryPoint
` [PATCH v2 23/26] StandaloneMmPkg: Remove dependency on ArmPlatformPkg.dec
` [PATCH v2 24/26] StandaloneMmPkg: Add EDK2 Core CI support
` [PATCH v2 25/26] .azurepipelines: Add StandaloneMmPkg to CI matrix
` [PATCH v2 26/26] .pytool: CI Settings to support StandaloneMmPkg

[PATCH] Ovmf: Set matching PCI routing values in PIIX4
 2020-12-17 12:52 UTC  (5+ messages)
` [edk2-devel] "
    ` [EXTERNAL] "

[PATCH v2-resend 0/2] Add AEST parser support to Acpiview
 2020-12-17  9:34 UTC  (2+ messages)

[PATCH v4] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-17  6:20 UTC 

Tiger Lake FSP Released
 2020-12-17  6:11 UTC 

[PATCH v3] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-17  5:30 UTC 

[PATCH v2] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-17  3:06 UTC 

[PATCH] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-17  2:56 UTC 

[edk2-devel] VariablePolicy support in StandaloneMM
 2020-12-17  1:56 UTC  (5+ messages)
    ` 回复: "

[PATCH 1/2] BaseTools LzmaCompress: Update LZMA to new 19.00 version
 2020-12-17  1:30 UTC  (2+ messages)
` 回复: "

[PATCH 0/1] MdeModulePkg/VarCheckPolicyLib: implement standalone MM version
 2020-12-17  1:14 UTC  (3+ messages)
` [PATCH 1/1] "
  ` 回复: "

How to assign NULL to a VOID* PCD?
 2020-12-17  1:03 UTC  (7+ messages)
` [edk2-devel] "
        ` 回复: "

[PATCH 1/1] BaseTools: Adjust StructurePcd List Order
 2020-12-17  0:53 UTC 

[PATCH v1 0/2] Ecc tool modifications
 2020-12-17  0:53 UTC  (2+ messages)
` 回复: "

[PATCH] BaseTools: Should always define PCD TOKEN value as Zero for static PCD
 2020-12-17  0:49 UTC  (5+ messages)
  ` 回复: "
    ` [edk2-devel] "
      ` 回复: "

[PATCH] BaseTools/CommonLib.h: Build failed due to MAX_LONG_FILE_PATH
 2020-12-17  0:43 UTC  (3+ messages)
` [edk2-devel] "
  ` 回复: "

[PATCH 3/3] MinPlatformPkg: Add a Lib for MinPlatformPkg
 2020-12-17  0:37 UTC  (2+ messages)
` [edk2-devel] "

[PATCH 3/3] MinPlatformPkg:change Several modules
 2020-12-17  0:35 UTC  (2+ messages)
` [edk2-devel] "


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox