]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Application/HelloWorld/HelloWorld.inf
Correct minor comments in meta data file.
[mirror_edk2.git] / MdeModulePkg / Application / HelloWorld / HelloWorld.inf
CommitLineData
b7d286b6 1#/** @file\r
109e9a61 2# Sample UEFI Application Reference EDKII Module\r
b7d286b6 3#\r
86a3ad44 4# This is a sample shell application that will print "UEFI Hello World!" to the \r
5# UEFI Console based on PCD setting.\r
6#\r
f33d304b 7# It demos how to use EDKII PCD mechanism to make code more flexible.\r
109e9a61
LG
8#\r
9# Copyright (c) 2008, Intel Corporation.\r
b7d286b6 10#\r
11# All rights reserved. This program and the accompanying materials\r
12# are licensed and made available under the terms and conditions of the BSD License\r
13# which accompanies this distribution. The full text of the license may be found at\r
14# http://opensource.org/licenses/bsd-license.php\r
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
17#\r
18#\r
19#**/\r
20\r
b7d286b6 21[Defines]\r
22 INF_VERSION = 0x00010005\r
23 BASE_NAME = HelloWorld\r
24 FILE_GUID = 6987936E-ED34-44db-AE97-1FA5E4ED2116\r
25 MODULE_TYPE = UEFI_APPLICATION\r
26 VERSION_STRING = 1.0\r
b7d286b6 27 ENTRY_POINT = UefiMain\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
32# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
33#\r
34\r
223c22d8 35[Sources]\r
b7d286b6 36 HelloWorld.c\r
b7d286b6 37\r
b7d286b6 38[Packages]\r
0dea993c 39 MdePkg/MdePkg.dec\r
223c22d8 40 MdeModulePkg/MdeModulePkg.dec\r
b7d286b6 41\r
b7d286b6 42[LibraryClasses]\r
b7d286b6 43 UefiApplicationEntryPoint\r
44 UefiLib\r
223c22d8
LG
45 PcdLib\r
46\r
47[Guids]\r
48\r
49[Ppis]\r
50\r
51[Protocols]\r
b7d286b6 52\r
223c22d8
LG
53[FeaturePcd]\r
54 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable\r
b7d286b6 55\r
223c22d8 56[Pcd]\r
de5b0df9
LG
57 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintString || PcdHelloWorldPrintEnable ## Valid when gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable\r
58 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintTimes || PcdHelloWorldPrintEnable ## Valid when gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable\r