]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
1. Correct File header to ## @file
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / DataHubDxe / DataHubDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
4ee6846f 2# This driver initializes and installs the Data Hub protocol.\r
2ab23929 3#\r
4# The data hub is a volatile database that is intended as the major focus for the accumulation of\r
5# manageability data.T he hub is fed by "producers" with chunks of data in a defined format.\r
6# Consumers may then extract the data in temporal "log" order.As an example, progress codes might\r
7# be recorded in the data hub for future processing.Ot her data contributed to the data hub might\r
8# include, for example, statistics on enumerated items such as memory, add-in buses, and add-in\r
9# cards and data on errors encountered during boot (for example, the system did not boot off the\r
10# network because the cable was not plugged in).\r
11# Some classes of data have defined formats.For example, the amount of memory in the system is\r
12# reported in a standard format so that consumers can be written to extract the data.O ther data is\r
13# system specific.For example, additional detail on errors might be specific to the driver that\r
14# discovered the error.The consumer might be a driver that tabularizes data from the data hub,\r
15# providing a mechanism for the raw data to be made available to the OS for post-processing by\r
16# OS-based applications.\r
17# The intent of the data hub is for drivers that enumerate and configure parts of the system to report\r
18# their discoveries to the data hub.This data can then be extracted by other drivers that report those\r
19# discoveries using standard manageability interfaces such as SMBIOS and Intelligent Platform\r
20# Management Interface (IPMI).The alternative to a data-hub-like architecture is to require all\r
21# drivers to be aware of all reporting formats.\r
22# For more information, please ref http://www.intel.com/technology/framework/\r
23# \r
6bfbb5f0 24# Copyright (c) 2006 - 2010, Intel Corporation\r
83f6d1a0 25#\r
26# All rights reserved. This program and the accompanying materials\r
27# are licensed and made available under the terms and conditions of the BSD License\r
28# which accompanies this distribution. The full text of the license may be found at\r
29# http://opensource.org/licenses/bsd-license.php\r
30# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
31# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
32#\r
33#\r
6bfbb5f0 34##\r
83f6d1a0 35\r
83f6d1a0 36[Defines]\r
37 INF_VERSION = 0x00010005\r
69b26c15 38 BASE_NAME = DataHubDxe\r
83f6d1a0 39 FILE_GUID = 53BCC14F-C24F-434C-B294-8ED2D4CC1860\r
40 MODULE_TYPE = DXE_DRIVER\r
41 VERSION_STRING = 1.0\r
83f6d1a0 42 EFI_SPECIFICATION_VERSION = 0x00020000\r
83f6d1a0 43 ENTRY_POINT = DataHubInstall\r
44\r
45#\r
46# The following information is for reference only and not required by the build tools.\r
47#\r
48# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
49#\r
50\r
6bfbb5f0 51[Sources]\r
83f6d1a0 52 DataHub.h\r
53 DataHub.c\r
54\r
55\r
83f6d1a0 56[Packages]\r
57 IntelFrameworkPkg/IntelFrameworkPkg.dec\r
58 MdePkg/MdePkg.dec\r
59\r
60\r
83f6d1a0 61[LibraryClasses]\r
62 UefiRuntimeServicesTableLib\r
63 UefiBootServicesTableLib\r
64 MemoryAllocationLib\r
65 BaseMemoryLib\r
66 BaseLib\r
67 UefiLib\r
68 UefiDriverEntryPoint\r
69 DebugLib\r
70\r
71\r
83f6d1a0 72[Protocols]\r
2ab23929 73 gEfiDataHubProtocolGuid # PROTOCOL PRODUCED\r
83f6d1a0 74\r
75\r
83f6d1a0 76[Depex]\r
77 TRUE\r
78\r