1## @file
2#
3#  Stateful, implicitly initialized fw_cfg library.
4#
5#  Copyright (C) 2013, Red Hat, Inc.
6#  Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
7#
8#  This program and the accompanying materials
9#  are licensed and made available under the terms and conditions of the BSD License
10#  which accompanies this distribution. The full text of the license may be found at
11#  http://opensource.org/licenses/bsd-license.php
12#
13#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15#
16##
17
18[Defines]
19  INF_VERSION                    = 0x00010005
20  BASE_NAME                      = QemuFwCfgLib
21  FILE_GUID                      = fdd53716-31e1-4acc-9007-8bd5d877c96f
22  MODULE_TYPE                    = BASE
23  VERSION_STRING                 = 1.0
24  LIBRARY_CLASS                  = QemuFwCfgLib|PEIM DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER
25
26  CONSTRUCTOR                    = QemuFwCfgInitialize
27
28#
29# The following information is for reference only and not required by the build tools.
30#
31#  VALID_ARCHITECTURES           = IA32 X64
32#
33
34[Sources]
35  QemuFwCfgLibInternal.h
36  QemuFwCfgLib.c
37  QemuFwCfgPeiDxe.c
38
39[Sources.IA32]
40  Ia32/IoLibExAsm.nasm
41
42[Sources.X64]
43  X64/IoLibExAsm.nasm
44
45[Packages]
46  MdePkg/MdePkg.dec
47  OvmfPkg/OvmfPkg.dec
48
49[LibraryClasses]
50  BaseLib
51  BaseMemoryLib
52  DebugLib
53  IoLib
54  MemoryAllocationLib
55
56