Create smbios table when user adds/removes/Updatestring for a SMBIOS entry. It is for UEFI driver to access SMBIOS table in configuration table before boot.

Signed-off-by: li-elvin
Reviewed-by: lzeng14


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12067 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
li-elvin
2011-08-01 07:30:02 +00:00
parent afe05b7a45
commit 0ddd855318
2 changed files with 191 additions and 113 deletions

View File

@@ -1,7 +1,7 @@
/** @file
This code supports the implementation of the Smbios protocol
Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -108,4 +108,13 @@ typedef struct {
UINT8 Tailing[2];
} EFI_SMBIOS_TABLE_END_STRUCTURE;
/**
Create Smbios Table and installs the Smbios Table to the System Table.
**/
VOID
EFIAPI
SmbiosTableConstruction (
VOID
);
#endif