]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Application/HelloWorld/HelloWorld.inf
MdeModulePkg: INF/DEC file updates to EDK II packages
[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 - 2014, Intel Corporation. All rights reserved.<BR>\r
10#\r
11# 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 MODULE_UNI_FILE = HelloWorld.uni\r
25 FILE_GUID = 6987936E-ED34-44db-AE97-1FA5E4ED2116\r
26 MODULE_TYPE = UEFI_APPLICATION\r
27 VERSION_STRING = 1.0\r
28 ENTRY_POINT = UefiMain\r
29\r
30#\r
31# The following information is for reference only and not required by the build tools.\r
32#\r
33# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
34#\r
35\r
36[Sources]\r
37 HelloWorld.c\r
38\r
39[Packages]\r
40 MdePkg/MdePkg.dec\r
41 MdeModulePkg/MdeModulePkg.dec\r
42\r
43[LibraryClasses]\r
44 UefiApplicationEntryPoint\r
45 UefiLib\r
46 PcdLib\r
47\r
48[FeaturePcd]\r
49 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## CONSUMES\r
50\r
51[Pcd]\r
52 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintString || gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## SOMETIMES_CONSUMES\r
53 gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintTimes || gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## SOMETIMES_CONSUMES\r
54\r
55[UserExtensions.TianoCore."ExtraFiles"]\r
56 HelloWorldExtra.uni\r