1 #/** @file 2 # Support a Semi Host file system over a debuggers JTAG 3 # 4 # Copyright (c) 2009, Apple Inc. All rights reserved.<BR> 5 # Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved. 6 # 7 # This program and the accompanying materials 8 # are licensed and made available under the terms and conditions of the BSD License 9 # which accompanies this distribution. The full text of the license may be found at 10 # http://opensource.org/licenses/bsd-license.php 11 # 12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 # 15 #**/ 16 17 [Defines] 18 INF_VERSION = 0x00010005 19 BASE_NAME = SemihostFs 20 FILE_GUID = C5B9C74A-6D72-4719-99AB-C59F199091EB 21 MODULE_TYPE = UEFI_DRIVER 22 VERSION_STRING = 1.0 23 24 ENTRY_POINT = SemihostFsEntryPoint 25 26 [Sources.ARM, Sources.AARCH64] 27 Arm/SemihostFs.c 28 29 [Packages] 30 MdePkg/MdePkg.dec 31 ArmPkg/ArmPkg.dec 32 33 [LibraryClasses] 34 BaseLib 35 MemoryAllocationLib 36 SemihostLib 37 UefiDriverEntryPoint 38 UefiLib 39 40 [Guids] 41 gEfiFileSystemInfoGuid 42 gEfiFileInfoGuid 43 gEfiFileSystemVolumeLabelInfoIdGuid 44 45 [Protocols] 46 gEfiSimpleFileSystemProtocolGuid 47 gEfiDevicePathProtocolGuid 48 49