public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
 messages from 2020-12-16 09:31:13 to 2020-12-17 18:19:14 UTC [more...]

[PATCH v4 00/10] ArmPkg,MdePkg: Add Universal/Smbios, and related changes
 2020-12-17 18:19 UTC  (24+ messages)
` [PATCH v4 01/10] ArmPkg: Add ARM SMC Architecture functions to ArmStdSmc.h
  ` [edk2-devel] "
` [PATCH v4 03/10] ArmPkg: Add register encoding definition for MMFR2
  ` [edk2-devel] "
` [PATCH v4 04/10] ArmPkg: Add helper to read the Memory Model Features Register 2
    ` [edk2-devel] "
` [PATCH v4 05/10] ArmPkg: Add helper function to read the Memory Model Feature Register 4
  ` [edk2-devel] "
` [PATCH v4 06/10] ArmPkg: Add helper to read CCIDX status
  ` [edk2-devel] "
` [PATCH v4 07/10] ArmPkg: Fix the return type of the ReadCCSIDR function
  ` [edk2-devel] "
` [PATCH v4 09/10] ArmPkg: Add definition of the maximum cache level in ARMv8-A
  ` [edk2-devel] "
` [PATCH v4 10/10] ArmPkg: Add Universal/Smbios, a generic SMBIOS library for ARM
  ` [edk2-devel] "

[PATCH v7 0/6] jansson edk2 port
 2020-12-17 17:52 UTC  (13+ 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] "
` [PATCH v7 5/6] RedfishPkg: Add EDK2 port of jansson library to build
` [PATCH v7 6/6] .pytool: Add required submodule for JsonLib

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

[RFC] UnitTestFrameworkPkg cmocka submodule alternatives
 2020-12-17 16:01 UTC  (5+ messages)
` 回复: [edk2-devel] "
` [edk2-rfc] "

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

[PATCH] Revert "UefiCpuPkg/CpuDxe: Fix boot error"
 2020-12-17 14:40 UTC  (2+ messages)
` [edk2-devel] "

[edk2 PATCH 00/48] ArmVirtPkg, OvmfPkg: virtio filesystem driver
 2020-12-17 14:32 UTC  (53+ messages)
` [edk2 PATCH 01/48] OvmfPkg: introduce VirtioFsDxe
` [edk2 PATCH 02/48] ArmVirtPkg: include VirtioFsDxe in the ArmVirtQemu* platforms
` [edk2 PATCH 03/48] OvmfPkg/VirtioFsDxe: DriverBinding: open VirtioDevice, install SimpleFs
` [edk2 PATCH 04/48] OvmfPkg/VirtioFsDxe: implement virtio device (un)initialization
` [edk2 PATCH 05/48] OvmfPkg/VirtioFsDxe: add a scatter-gather list data type
` [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

[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] "

[PATCH v5] MdeModulePkg/Universal/StatusCodeHandler: Fix a bug about log lost
 2020-12-17 13:58 UTC 

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

[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 

[PATCH] BaseTools/CommonLib.h: Build failed due to MAX_LONG_FILE_PATH
 2020-12-17  2:19 UTC 

[edk2-devel] VariablePolicy support in StandaloneMM
 2020-12-17  1:56 UTC  (6+ 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] "
  ` 回复: "

[PATCH v2] BaseTools: Should always define PCD TOKEN value as Zero for static PCD
 2020-12-17  1:09 UTC 

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  (4+ messages)
` [PATCH v1 1/2] BaseTools: Fix crash in ECC when parsing incorrect header
` [PATCH v1 2/2] BaseTools/Ecc: Allow init of function static variables
` 回复: [PATCH v1 0/2] Ecc tool modifications

[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] "

[PATCH 0/2] Update SevSecret API to work for TDX
 2020-12-17  0:25 UTC  (5+ messages)
` [PATCH 2/2] OvmfPkg/AmdSev/SecretDxe: make secret location naming generic

[PATCH v1 00/25] Fix Ecc reported errors in ArmPkg
 2020-12-16 17:22 UTC  (26+ messages)
` [PATCH v1 01/25] ArmPkg: Format header to fix Ecc crash in ArmMmuLib
` [PATCH v1 02/25] ArmPkg: Fix Ecc error 3002 in CompilerIntrinsicsLib
` [PATCH v1 03/25] ArmPkg: Fix Ecc error 3002 in OpteeLib
` [PATCH v1 04/25] ArmPkg: Fix Ecc error 3002 in ArmMmuLib
` [PATCH v1 05/25] ArmPkg: Fix Ecc error 3002 in TimerDxe
` [PATCH v1 06/25] ArmPkg: Fix Ecc error 3002 in MmCommunicationDxe
` [PATCH v1 07/25] ArmPkg: Fix Ecc error 3002 in CpuDxe
` [PATCH v1 08/25] ArmPkg: Fix Ecc error 3002 in SemihostFs
` [PATCH v1 09/25] ArmPkg: Fix Ecc error 3002 in ArmDisassemblerLib
` [PATCH v1 10/25] ArmPkg: Fix Ecc error 3001 in SemihostFs
` [PATCH v1 11/25] ArmPkg: Fix Ecc error 5005 in CpuDxe
` [PATCH v1 12/25] ArmPkg: Fix Ecc error 5005 in ArmExceptionLib
` [PATCH v1 13/25] ArmPkg: Fix Ecc error 5007 in CompilerIntrinsicsLib
` [PATCH v1 14/25] ArmPkg: Fix Ecc error 5007 in ArmScmiDxe
` [PATCH v1 15/25] ArmPkg: Fix Ecc error 5007 in CpuDxe
` [PATCH v1 16/25] ArmPkg: Fix Ecc error 5007 in TimerDxe
` [PATCH v1 17/25] ArmPkg: Fix Ecc error 5007 in SemihostFs
` [PATCH v1 18/25] ArmPkg: Fix Ecc error 5007 in ArmCacheMaintenanceLib
` [PATCH v1 19/25] ArmPkg: Fix Ecc error 5007 in ArmDisassemblerLib
` [PATCH v1 20/25] ArmPkg: Fix Ecc error 5007 in ArmLib
` [PATCH v1 21/25] ArmPkg: Fix Ecc error 5007 in ArmMmuLib
` [PATCH v1 22/25] ArmPkg: Fix Ecc error 5007 in SemiHostingSerialPortLib
` [PATCH v1 23/25] ArmPkg: Fix Ecc error 5007 in SemihostLib
` [PATCH v1 24/25] ArmPkg: Fix Ecc error 5007 in StandaloneMmMmuLib
` [PATCH v1 25/25] ArmPkg: Fix Ecc error 5007 in DefaultExceptionHandlerLib

[PATCH] EmulatorPkg/library: RedfishPlatformCredentialLib
 2020-12-16  3:35 UTC 

[PATCH v6 0/6] jansson edk2 port
 2020-12-16 15:36 UTC  (4+ messages)
` [PATCH v6 3/6] RedfishPkg/CrtLib: C runtime library
  ` [edk2-devel] "

[PATCH v5 0/6] jansson edk2 port
 2020-12-16 15:04 UTC  (12+ messages)
` 回复: [edk2-devel] "
  `  "

[PATCH v2 0/2] ArmPkg/ArmGicV3Dxe: fix writes to GICD_IPRIORITYR<n> when ARE enable
 2020-12-16 13:25 UTC  (3+ messages)
` [PATCH v2 1/2] ArmPkg/ArmGicLib: Add ArmGicSetInterruptPriority() helper function
` [PATCH v2 2/2] ArmPkg/ArmGicV3Dxe: Use ArmGicSetInterruptPriority() to set priority

[edk2-devel] [PATCH v2 00/13] Add support for using FF-A calls
 2020-12-16 11:13 UTC 

[PATCH edk2-platforms v3 0/2] Add support for running StandaloneMm as OP-TEE TA
 2020-12-16 11:09 UTC  (3+ messages)
` [PATCH edk2-platforms v3 1/2] Drivers/OpTeeRpmb: Add an OP-TEE backed RPMB driver
` [PATCH edk2-platforms v3 2/2] StMMRpmb: Add support for building StandaloneMm image for OP-TEE

[PATCH v4 00/11] ArmPkg,MdePkg: Add Universal/Smbios and Drivers/FirmwareVersionInfoPeim
 2020-12-16 11:06 UTC  (5+ messages)
` [PATCH v4 05/11] ArmPkg: Add helper function to read the Memory Model Feature Register 4
` [PATCH v4 06/11] ArmPkg: Add helper to read CCIDX status

[edk2-devel] [PATCH 1/2] MdeModulePkg/SataControllerDxe: Add support for drives in RAID mode
 2020-12-16  9:31 UTC  (4+ messages)


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