1## @file 2# A simple, basic, EDK II native, "hello" application. 3# 4# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR> 5# This program and the accompanying materials 6# are licensed and made available under the terms and conditions of the BSD License 7# which accompanies this distribution. The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license. 9# 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13## 14 15[Defines] 16 INF_VERSION = 0x00010006 17 BASE_NAME = Hello 18 FILE_GUID = a912f198-7f0e-4803-b908-b757b806ec83 19 MODULE_TYPE = UEFI_APPLICATION 20 VERSION_STRING = 0.1 21 ENTRY_POINT = ShellCEntryLib 22 23# 24# VALID_ARCHITECTURES = IA32 X64 IPF 25# 26 27[Sources] 28 Hello.c 29 30[Packages] 31 MdePkg/MdePkg.dec 32 ShellPkg/ShellPkg.dec 33 34[LibraryClasses] 35 UefiLib 36 ShellCEntryLib 37