diff options
author | li-elvin <li-elvin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-08-01 07:30:02 +0000 |
---|---|---|
committer | li-elvin <li-elvin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-08-01 07:30:02 +0000 |
commit | 0ddd855318a42ecdd52c87e59202481996062276 (patch) | |
tree | f7c9a0cc2c682372fc3f7401f62019baee186dc9 /MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h | |
parent | afe05b7a45cefed0fffd482741d57143b34dc036 (diff) | |
download | edk2-platforms-0ddd855318a42ecdd52c87e59202481996062276.tar.xz |
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
Diffstat (limited to 'MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h')
-rw-r--r-- | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h index 6000bda3cf..3c78b993bd 100644 --- a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h +++ b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.h @@ -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
|