]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
IntelFrameworkModulePkg: Replace BSD License with BSD+Patent License
[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
0a6f4824
LG
23#\r
24# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
83f6d1a0 25#\r
c0a00b14 26# SPDX-License-Identifier: BSD-2-Clause-Patent\r
83f6d1a0 27#\r
28#\r
6bfbb5f0 29##\r
83f6d1a0 30\r
83f6d1a0 31[Defines]\r
32 INF_VERSION = 0x00010005\r
69b26c15 33 BASE_NAME = DataHubDxe\r
f9841f04 34 MODULE_UNI_FILE = DataHubDxe.uni\r
83f6d1a0 35 FILE_GUID = 53BCC14F-C24F-434C-B294-8ED2D4CC1860\r
36 MODULE_TYPE = DXE_DRIVER\r
37 VERSION_STRING = 1.0\r
83f6d1a0 38 ENTRY_POINT = DataHubInstall\r
39\r
40#\r
41# The following information is for reference only and not required by the build tools.\r
42#\r
64bbf1de 43# VALID_ARCHITECTURES = IA32 X64 EBC\r
83f6d1a0 44#\r
45\r
6bfbb5f0 46[Sources]\r
83f6d1a0 47 DataHub.h\r
48 DataHub.c\r
49\r
50\r
83f6d1a0 51[Packages]\r
52 IntelFrameworkPkg/IntelFrameworkPkg.dec\r
53 MdePkg/MdePkg.dec\r
6692e0a8 54 MdeModulePkg/MdeModulePkg.dec\r
83f6d1a0 55\r
56\r
83f6d1a0 57[LibraryClasses]\r
58 UefiRuntimeServicesTableLib\r
59 UefiBootServicesTableLib\r
60 MemoryAllocationLib\r
61 BaseMemoryLib\r
62 BaseLib\r
63 UefiLib\r
64 UefiDriverEntryPoint\r
65 DebugLib\r
66\r
67\r
83f6d1a0 68[Protocols]\r
f9841f04 69 gEfiDataHubProtocolGuid ## PRODUCES\r
83f6d1a0 70\r
71\r
83f6d1a0 72[Depex]\r
73 TRUE\r
74\r
f9841f04
SZ
75[UserExtensions.TianoCore."ExtraFiles"]\r
76 DataHubDxeExtra.uni\r