2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# Sample UEFI Application Reference EDKII Module.
|
2007-06-22 11:15:22 +02:00
|
|
|
#
|
2014-08-28 08:34:06 +02:00
|
|
|
# This is a sample shell application that will print "UEFI Hello World!" to the
|
2009-02-25 10:13:18 +01:00
|
|
|
# UEFI Console based on PCD setting.
|
|
|
|
#
|
2009-02-25 10:14:06 +01:00
|
|
|
# It demos how to use EDKII PCD mechanism to make code more flexible.
|
2009-01-04 04:20:55 +01:00
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
|
2007-06-22 11:15:22 +02:00
|
|
|
#
|
2019-04-04 01:05:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-06-22 11:15:22 +02:00
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-06-22 11:15:22 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = HelloWorld
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = HelloWorld.uni
|
2007-06-22 11:15:22 +02:00
|
|
|
FILE_GUID = 6987936E-ED34-44db-AE97-1FA5E4ED2116
|
|
|
|
MODULE_TYPE = UEFI_APPLICATION
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = UefiMain
|
|
|
|
|
2016-02-21 08:55:14 +01:00
|
|
|
#
|
|
|
|
# This flag specifies whether HII resource section is generated into PE image.
|
|
|
|
#
|
|
|
|
UEFI_HII_RESOURCE_SECTION = TRUE
|
|
|
|
|
2007-06-22 11:15:22 +02:00
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2007-06-22 11:15:22 +02:00
|
|
|
#
|
|
|
|
|
2008-09-19 07:05:40 +02:00
|
|
|
[Sources]
|
2007-06-22 11:15:22 +02:00
|
|
|
HelloWorld.c
|
2016-02-21 08:55:14 +01:00
|
|
|
HelloWorldStr.uni
|
2007-06-22 11:15:22 +02:00
|
|
|
|
|
|
|
[Packages]
|
2007-06-29 23:03:06 +02:00
|
|
|
MdePkg/MdePkg.dec
|
2008-09-19 07:05:40 +02:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-06-22 11:15:22 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiApplicationEntryPoint
|
|
|
|
UefiLib
|
2008-09-19 07:05:40 +02:00
|
|
|
PcdLib
|
|
|
|
|
|
|
|
[FeaturePcd]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintEnable ## CONSUMES
|
2007-06-22 11:15:22 +02:00
|
|
|
|
2008-09-19 07:05:40 +02:00
|
|
|
[Pcd]
|
2017-03-31 07:03:59 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintString ## SOMETIMES_CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdHelloWorldPrintTimes ## SOMETIMES_CONSUMES
|
2014-08-28 08:34:06 +02:00
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
HelloWorldExtra.uni
|