summaryrefslogtreecommitdiff
path: root/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c
diff options
context:
space:
mode:
Diffstat (limited to 'CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c')
-rw-r--r--CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c b/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c
new file mode 100644
index 0000000000..ecdad1a454
--- /dev/null
+++ b/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c
@@ -0,0 +1,35 @@
+/** @file
+ Include all platform specific features which can be customized by IBV/OEM.
+
+Copyright (c) 2016, 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
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+**/
+
+#include <Uefi.h>
+#include <Library/BaseLib.h>
+#include <Library/UefiLib.h>
+#include <Library/CbPlatformSupportLib.h>
+
+/**
+ Parse platform specific information from coreboot.
+
+ @retval RETURN_SUCCESS The platform specific coreboot support succeeded.
+ @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.
+
+**/
+EFI_STATUS
+EFIAPI
+CbParsePlatformInfo (
+ VOID
+ )
+{
+ return EFI_SUCCESS;
+}
+