public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
 messages from 2020-12-15 08:58:26 to 2020-12-16 22:37:55 UTC [more...]

[edk2 PATCH 00/48] ArmVirtPkg, OvmfPkg: virtio filesystem driver
 2020-12-16 21:11 UTC  (42+ 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
` [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

How to assign NULL to a VOID* PCD?
 2020-12-16 21:30 UTC  (3+ messages)
` [edk2-devel] "

[RFC] UnitTestFrameworkPkg cmocka submodule alternatives
 2020-12-16 18:45 UTC 

[edk2-devel] VariablePolicy support in StandaloneMM
 2020-12-16 17:52 UTC  (4+ messages)

[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 v1 0/2] Ecc tool modifications
 2020-12-16 17:05 UTC  (3+ 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 0/2] Update SevSecret API to work for TDX
 2020-12-16 16:53 UTC  (6+ messages)
` [PATCH 1/2] OvmfPkg: Change SEV Launch Secret API to be UINT64 for base and size
` [PATCH 2/2] OvmfPkg/AmdSev/SecretDxe: make secret location naming generic

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

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

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

[PATCH v4 00/10] ArmPkg,MdePkg: Add Universal/Smbios, and related changes
 2020-12-16 15:21 UTC  (28+ 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 08/10] ArmPkg: Update ArmLibPrivate.h with cache register definitions
` [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 v5 0/6] jansson edk2 port
 2020-12-16 15:04 UTC  (12+ messages)
` 回复: [edk2-devel] "
  `  "

[PATCH 0/1] MdeModulePkg/VarCheckPolicyLib: implement standalone MM version
 2020-12-16 14:19 UTC  (2+ messages)
` [PATCH 1/1] "

[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

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

[PATCH 3/3] MinPlatformPkg: Add a Lib for MinPlatformPkg
 2020-12-16  8:47 UTC 

[PATCH 3/3] MinPlatformPkg:change Several modules
 2020-12-16  8:40 UTC 

[PATCH 0/2] EDKII Redfish Credential DXE Driver
 2020-12-16  7:43 UTC  (9+ messages)
` [PATCH 1/2] RedfishPkg/Include: EDKII Redfish Credential Header file
` [PATCH 2/2] RedfishPkg/RedfishCredentialDxe: EDKII Redfish Credential DXE driver

[PATCH] MinPlatformPkg:Fixed MinPlatformPkg.dec
 2020-12-16  7:18 UTC 

[PATCH] BaseTools/CommonLib.h: Build failed due to MAX_LONG_FILE_PATH
 2020-12-16  7:17 UTC  (2+ messages)
` [edk2-devel] "

[PATCH v1 1/1] Silicon/FitGen: Enhance Slot mode support force mode for multiple FV
 2020-12-16  7:07 UTC 

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

[RFC V2] Create supported branch from edk2-stable* tag (Required to address critical bug BZ3111)
 2020-12-16  2:51 UTC  (3+ messages)
` 回复: "

[tianocore-docs][SecurityAdvisory/release/Ver009.00][Patch] Add Gitbook Action and sync with template
 2020-12-16  1:57 UTC  (2+ messages)
` [edk2-devel] "

[PATCH EDK2-non-osi v1 0/1] Silicon/Hisilicon: fix compile issues triggered by VariablePolicy
 2020-12-16  1:41 UTC  (2+ messages)
` [PATCH EDK2-non-osi v1 1/1] "

[PATCH v2 6/9] Platform/RaspberryPi: Power up sd, and tweak GPIOs
 2020-12-15 21:00 UTC 

[PATCH 00/12] SEV-ES security mitigations
 2020-12-15 20:51 UTC  (13+ messages)
` [PATCH 01/12] Ovmf/ResetVector: Simplify and consolidate the SEV features checks
` [PATCH 02/12] OvmfPkg/Sec: Move SEV-ES SEC workarea definition to common header file
` [PATCH 03/12] OvmfPkg/ResetVector: Validate the encryption bit position for SEV/SEV-ES
` [PATCH 04/12] OvmfPkg/ResetVector: Perform a simple SEV-ES sanity check
` [PATCH 05/12] OvmfPkg/MemEncryptSevLib: Add an interface to retrieve the encryption mask
` [PATCH 06/12] OvmfPkg/AmdSevDxe: Clear encryption bit on PCIe MMCONFIG range
` [PATCH 07/12] OvmfPkg/VmgExitLib: Check for an explicit DR7 cached value
` [PATCH 08/12] OvmfPkg/MemEncryptSevLib: Make the MemEncryptSevLib available for SEC
` [PATCH 09/12] OvmfPkg/MemEncryptSevLib: Address range encryption state interface
` [PATCH 10/12] OvmfPkg/VmgExitLib: Support nested #VCs
` [PATCH 11/12] OvmfPkg/PlatformPei: Reserve GHCB backup pages if S3 is supported
` [PATCH 12/12] OvfmPkg/VmgExitLib: Validate #VC MMIO is to un-encrypted memory

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

[PATCH 0/7] Enable emmc2 controller rpi4
 2020-12-15 20:15 UTC  (20+ messages)
` [PATCH 1/7] Platform/RaspberryPi: Update VPU mailbox constants
  ` [edk2-devel] "
` [PATCH 2/7] Platform/RaspberryPi: Add further mailbox helpers
  ` [edk2-devel] "
` [PATCH 3/7] Platform/RaspberryPi: Split MMC register defintions
  ` [edk2-devel] "
` [PATCH 4/7] Platform/RaspberryPi/Arasan: Add write delay and voltage/clock config
  ` [edk2-devel] "
` [PATCH 5/7] Platform/RaspberryPi/Arasan: Select the correct base frequency
  ` [edk2-devel] "
` [PATCH 6/7] Platform/RaspberryPi: Power up sd, and tweak GPIOs
  ` [edk2-devel] "
` [PATCH 7/7] Platform/RaspberryPi: Correct device path removal
  ` [edk2-devel] "

[PATCH v4 1/2] MdePkg/Cpuid.h: Add CPUID_HYBRID_INFORMATION Leaf(1Ah)
 2020-12-15 14:16 UTC  (2+ messages)
` [PATCH v4 2/2] UefiCpuPkg/CpuCacheInfoLib: Add new CpuCacheInfoLib

[PATCH v2 0/4] Add extra pci roots support for Arm
 2020-12-15 12:52 UTC  (5+ messages)
  ` [edk2-devel] "

[PATCH v1-resend 0/1] sbsa-wdt interrupt id update
 2020-12-15 11:57 UTC  (3+ messages)
` [PATCH v1-resend 1/1] Silicon/Qemu/Sbsa: "

[PATCH] MdePkg/include: Add DMAR SATC Table Definition
 2020-12-15 10:53 UTC  (7+ 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