summaryrefslogtreecommitdiff
path: root/Board/OemSetup.c
diff options
context:
space:
mode:
authorraywu <raywu0301@gmail.com>2018-06-15 00:00:50 +0800
committerraywu <raywu0301@gmail.com>2018-06-15 00:00:50 +0800
commitb7c51c9cf4864df6aabb99a1ae843becd577237c (patch)
treeeebe9b0d0ca03062955223097e57da84dd618b9a /Board/OemSetup.c
downloadzprj-b7c51c9cf4864df6aabb99a1ae843becd577237c.tar.xz
init. 1AQQW051HEADmaster
Diffstat (limited to 'Board/OemSetup.c')
-rw-r--r--Board/OemSetup.c94
1 files changed, 94 insertions, 0 deletions
diff --git a/Board/OemSetup.c b/Board/OemSetup.c
new file mode 100644
index 0000000..8544c71
--- /dev/null
+++ b/Board/OemSetup.c
@@ -0,0 +1,94 @@
+//**********************************************************************
+//**********************************************************************
+//** **
+//** (C)Copyright 1985-2009, American Megatrends, Inc. **
+//** **
+//** All Rights Reserved. **
+//** **
+//** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 **
+//** **
+//** Phone: (770)-246-8600 **
+//** **
+//**********************************************************************
+//**********************************************************************
+//**********************************************************************
+// $Header: /Alaska/BIN/Board/OemSetup.c 2 6/25/09 6:09p Robert $
+//
+// $Revision: 2 $
+//
+// $Date: 6/25/09 6:09p $
+//**********************************************************************
+// Revision History
+// ----------------
+// $Log: /Alaska/BIN/Board/OemSetup.c $
+//
+// 2 6/25/09 6:09p Robert
+// Updated Comments and function headers
+//
+// 1 6/13/06 4:53p Sivagarn
+// Initial Checkin
+//
+//
+//**********************************************************************
+
+//<AMI_FHDR_START>
+//----------------------------------------------------------------------------
+//
+// Name: OemSetup.c
+//
+// Description: OEM Template Setup Routines
+//
+//----------------------------------------------------------------------------
+//<AMI_FHDR_END>
+
+#include <AmiLib.h>
+#include <AmiDxeLib.h>
+#include <Setup.h>
+#include <SetupStrTokens.h>
+#include <Protocol\PciIo.h>
+
+
+// Function Definitions
+
+
+//<AMI_PHDR_START>
+//----------------------------------------------------------------------------
+// Procedure: InitBoardStrings
+//
+// Description:
+// This function initializes the board related setup option values
+//
+// Input:
+// HiiHandle - Handle to HII database
+// Class - Indicates the setup class
+//
+// Output: None
+//
+//----------------------------------------------------------------------------
+//<AMI_PHDR_END>
+
+VOID
+InitBoardStrings(
+ EFI_HII_HANDLE HiiHandle,
+ UINT16 Class
+)
+{
+
+ return;
+}
+
+
+
+//**********************************************************************
+//**********************************************************************
+//** **
+//** (C)Copyright 1985-2009, American Megatrends, Inc. **
+//** **
+//** All Rights Reserved. **
+//** **
+//** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 **
+//** **
+//** Phone: (770)-246-8600 **
+//** **
+//**********************************************************************
+//**********************************************************************