oliviermartin | 1e57a46 | 2013-01-25 11:28:06 +0000 | [diff] [blame] | 1 | #/** @file
|
| 2 | # Support a Semi Host file system over a debuggers JTAG
|
| 3 | #
|
| 4 | # Copyright (c) 2009, Apple Inc. All rights reserved.<BR>
|
Harry Liebel | 25402f5 | 2013-07-18 18:07:46 +0000 | [diff] [blame] | 5 | # Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.
|
| 6 | #
|
Ronald Cron | 3402aac | 2014-08-19 13:29:52 +0000 | [diff] [blame] | 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
|
oliviermartin | 1e57a46 | 2013-01-25 11:28:06 +0000 | [diff] [blame] | 11 | #
|
Ronald Cron | 3402aac | 2014-08-19 13:29:52 +0000 | [diff] [blame] | 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.
|
oliviermartin | 1e57a46 | 2013-01-25 11:28:06 +0000 | [diff] [blame] | 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 |
|
Harry Liebel | 25402f5 | 2013-07-18 18:07:46 +0000 | [diff] [blame] | 26 | [Sources.ARM, Sources.AARCH64]
|
oliviermartin | 1e57a46 | 2013-01-25 11:28:06 +0000 | [diff] [blame] | 27 | Arm/SemihostFs.c
|
Ronald Cron | 3402aac | 2014-08-19 13:29:52 +0000 | [diff] [blame] | 28 |
|
oliviermartin | 1e57a46 | 2013-01-25 11:28:06 +0000 | [diff] [blame] | 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
|
Ronald Cron | 3402aac | 2014-08-19 13:29:52 +0000 | [diff] [blame] | 48 |
|