sync with OpenBSD -current

This commit is contained in:
purplerain 2024-09-06 01:21:03 +00:00
parent 9b453b8087
commit d592c28c93
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
298 changed files with 9365 additions and 4443 deletions

View file

@ -211,7 +211,7 @@ VOID
//
// EFI platform varibles
// EFI platform variables
//
#define EFI_GLOBAL_VARIABLE \
@ -672,7 +672,7 @@ typedef struct _EFI_TABLE_HEARDER {
//
// EFI Runtime Serivces Table
// EFI Runtime Services Table
//
#define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552

View file

@ -65,7 +65,7 @@ EFI_STATUS
Arguments:
This - Protocol instance pointer.
Mode - Are we in text of grahics mode.
Mode - Are we in text of graphics mode.
GopUgaExists - TRUE if Console Spliter has found a GOP or UGA device
StdInLocked - TRUE if StdIn device is keyboard locked

View file

@ -135,7 +135,7 @@ typedef enum {
MaxAllocateType
} EFI_ALLOCATE_TYPE;
//Preseve the attr on any range supplied.
//Preserve the attr on any range supplied.
//ConventialMemory must have WB,SR,SW when supplied.
//When allocating from ConventialMemory always make it WB,SR,SW
//When returning to ConventialMemory always make it WB,SR,SW

View file

@ -29,7 +29,7 @@ Revision History
//
// EFI Partition header (normaly starts in LBA 1)
// EFI Partition header (normally starts in LBA 1)
//
#define EFI_PARTITION_SIGNATURE 0x5053595320494249
@ -85,7 +85,7 @@ typedef struct _EFI_FILE_HEADER {
//
// Logical Block Address List - the fundemental block
// Logical Block Address List - the fundamental block
// description structure
//

View file

@ -309,7 +309,7 @@ typedef struct {
// Whenever code needs to know the size of the EFI_FILE_INFO data structure, it needs to
// be the size of the data structure without the FileName field. The following macro
// computes this size correctly no matter how big the FileName array is declared.
// This is required to make the EFI_FILE_INFO data structure ANSI compilant.
// This is required to make the EFI_FILE_INFO data structure ANSI compliant.
//
#define SIZE_OF_EFI_FILE_INFO EFI_FIELD_OFFSET(EFI_FILE_INFO,FileName)
@ -331,7 +331,7 @@ typedef struct {
// Whenever code needs to know the size of the EFI_FILE_SYSTEM_INFO data structure, it needs
// to be the size of the data structure without the VolumeLable field. The following macro
// computes this size correctly no matter how big the VolumeLable array is declared.
// This is required to make the EFI_FILE_SYSTEM_INFO data structure ANSI compilant.
// This is required to make the EFI_FILE_SYSTEM_INFO data structure ANSI compliant.
//
#define SIZE_OF_EFI_FILE_SYSTEM_INFO EFI_FIELD_OFFSET(EFI_FILE_SYSTEM_INFO,VolumeLabel)