]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Application/HelloWorld/HelloWorld.inf
MdeModulePkg: Add sample help information for HelloWorld application.
[mirror_edk2.git] / MdeModulePkg / Application / HelloWorld / HelloWorld.inf
CommitLineData
6bfbb5f0 1## @file\r
6036e94d 2# Sample UEFI Application Reference EDKII Module.\r
b7d286b6 3#\r
6036e94d 4# This is a sample shell application that will print "UEFI Hello World!" to the\r
86a3ad44 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 8#\r
0d4a6c3d 9# Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>\r
b7d286b6 10#\r
cd5ebaa0 11# This program and the accompanying materials\r
b7d286b6 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
6bfbb5f0 19##\r
b7d286b6 20\r
b7d286b6 21[Defines]\r
22 INF_VERSION = 0x00010005\r
23 BASE_NAME = HelloWorld\r
6036e94d 24 MODULE_UNI_FILE = HelloWorld.uni\r
b7d286b6 25 FILE_GUID = 6987936E-ED34-44db-AE97-1FA5E4ED2116\r
26 MODULE_TYPE = UEFI_APPLICATION\r
27 VERSION_STRING = 1.0\r
b7d286b6 28 ENTRY_POINT = UefiMain\r
29\r
0d4a6c3d
QS
30#\r
31# This flag specifies whether HII resource section is generated into PE image.\r
32#\r
33 UEFI_HII_RESOURCE_SECTION = TRUE\r
34\r
b7d286b6 35#\r
36# The following information is for reference only and not required by the build tools.\r
37#\r
38# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
39#\r
40\r
223c22d8 41[Sources]\r
b7d286b6 42 HelloWorld.c\r
0d4a6c3d 43 HelloWorldStr.uni\r
b7d286b6 44\r
b7d286b6 45[Packages]\r
0dea993c 46 MdePkg/MdePkg.dec\r
223c22d8 47 MdeModulePkg/MdeModulePkg.dec\r
b7d286b6 48\r
b7d286b6 49[LibraryClasses]\r
b7d286b6 50 UefiApplicationEntryPoint\r
51 UefiLib\r
223c22d8
LG
52 PcdLib\r
53\r
223c22d8 54[FeaturePcd]\r
6036e94d 55 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## CONSUMES\r
b7d286b6 56\r
223c22d8 57[Pcd]\r
6036e94d
SZ
58 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintString || gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## SOMETIMES_CONSUMES\r
59 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintTimes || gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## SOMETIMES_CONSUMES\r
60\r
61[UserExtensions.TianoCore."ExtraFiles"]\r
62 HelloWorldExtra.uni\r