]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Application/HelloWorld/HelloWorld.inf
fix typo
[mirror_edk2.git] / MdeModulePkg / Application / HelloWorld / HelloWorld.inf
... / ...
CommitLineData
1#/** @file\r
2# Sample UEFI Application Reference EDKII Module\r
3#\r
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
7# It demos how to use EDKII PCD mechanism to make code more flexible.\r
8#\r
9# Copyright (c) 2008, Intel Corporation.\r
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
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
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
35[Sources]\r
36 HelloWorld.c\r
37\r
38[Packages]\r
39 MdePkg/MdePkg.dec\r
40 MdeModulePkg/MdeModulePkg.dec\r
41\r
42[LibraryClasses]\r
43 UefiApplicationEntryPoint\r
44 UefiLib\r
45 PcdLib\r
46\r
47[Guids]\r
48\r
49[Ppis]\r
50\r
51[Protocols]\r
52\r
53[FeaturePcd]\r
54 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable\r
55\r
56[Pcd]\r
57 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintString ## Valid when gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable\r
58 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintTimes ## Valid when gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable\r