Home | History | Annotate | Download | only in BootMonFs
      1 #/** @file
      2 #  Support for ARM Boot Monitor File System
      3 #
      4 #  Copyright (c) 2012-2015, ARM Ltd. All rights reserved.<BR>
      5 #
      6 #  This program and the accompanying materials
      7 #  are licensed and made available under the terms and conditions of the BSD License
      8 #  which accompanies this distribution.  The full text of the license may be found at
      9 #  http://opensource.org/licenses/bsd-license.php
     10 #
     11 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     12 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     13 #
     14 #**/
     15 
     16 [Defines]
     17   INF_VERSION                    = 0x00010005
     18   BASE_NAME                      = BootMonFs
     19   FILE_GUID                      = 7abbc454-f737-4322-931c-b1bb62a01d6f
     20   MODULE_TYPE                    = UEFI_DRIVER
     21   VERSION_STRING                 = 1.0
     22 
     23   ENTRY_POINT                    = BootMonFsEntryPoint
     24 
     25 [Sources]
     26   BootMonFsEntryPoint.c
     27   BootMonFsOpenClose.c
     28   BootMonFsDir.c
     29   BootMonFsImages.c
     30   BootMonFsReadWrite.c
     31   BootMonFsUnsupported.c
     32 
     33 [Packages]
     34   ArmPlatformPkg/ArmPlatformPkg.dec
     35   MdePkg/MdePkg.dec
     36   MdeModulePkg/MdeModulePkg.dec
     37 
     38 [LibraryClasses]
     39   BaseLib
     40   DevicePathLib
     41   MemoryAllocationLib
     42   PrintLib
     43   UefiDriverEntryPoint
     44   UefiLib
     45 
     46 [Guids]
     47   gArmBootMonFsFileInfoGuid
     48   gEfiFileSystemInfoGuid
     49   gEfiFileInfoGuid
     50   gEfiFileSystemVolumeLabelInfoIdGuid
     51 
     52 [Pcd]
     53   gArmPlatformTokenSpaceGuid.PcdBootMonFsSupportedDevicePaths
     54 
     55 [Protocols]
     56   gEfiDiskIoProtocolGuid
     57   gEfiBlockIoProtocolGuid
     58   gEfiSimpleFileSystemProtocolGuid
     59   gEfiDevicePathProtocolGuid
     60   gEfiDevicePathFromTextProtocolGuid
     61 
     62