diff options
author | niruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-22 06:03:08 +0000 |
---|---|---|
committer | niruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-22 06:03:08 +0000 |
commit | 230319040a4906eecfde7c0ccc5858770227d26e (patch) | |
tree | af54ab0681ea5041308b3b73b997c05c57144282 /DuetPkg/Include/Guid | |
parent | 25973fc3eac9b0bc9a4d70adf993c2fcd668eb21 (diff) | |
download | edk2-platforms-230319040a4906eecfde7c0ccc5858770227d26e.tar.xz |
Enable BootTimeOut and ConsoleMode (80x25/100x30) setting save/restore in Duet Setup.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10039 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/Include/Guid')
-rw-r--r-- | DuetPkg/Include/Guid/ConsoleOutConfig.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/DuetPkg/Include/Guid/ConsoleOutConfig.h b/DuetPkg/Include/Guid/ConsoleOutConfig.h new file mode 100644 index 0000000000..a9e6380804 --- /dev/null +++ b/DuetPkg/Include/Guid/ConsoleOutConfig.h @@ -0,0 +1,33 @@ +/**@file
+ Setup Variable data structure for Duet platform.
+
+Copyright (c) 2010 Intel Corporation. All rights reserved
+This software and associated documentation (if any) is furnished
+under a license and may only be used or copied in accordance
+with the terms of the license. Except as permitted by such
+license, no part of this software or documentation may be
+reproduced, stored in a retrieval system, or transmitted in any
+form or by any means without the express written consent of
+Intel Corporation.
+
+**/
+
+#ifndef __DUET_CONSOLEOUT_CONFIG_H__
+#define __DUET_CONSOLEOUT_CONFIG_H__
+
+#define DUET_CONSOLEOUT_CONFIG_GUID \
+ { 0xED150714, 0xDF30, 0x407D, { 0xB2, 0x4A, 0x4B, 0x74, 0x2F, 0xD5, 0xCE, 0xA2 } }
+
+#pragma pack(1)
+typedef struct {
+ //
+ // Console output mode
+ //
+ UINT32 ConOutColumn;
+ UINT32 ConOutRow;
+} DUET_CONSOLEOUT_CONFIG;
+#pragma pack()
+
+extern EFI_GUID gDuetConsoleOutConfigGuid;
+
+#endif
|