]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
1. Correct File header to ## @file
[mirror_edk2.git] / MdeModulePkg / Bus / Scsi / ScsiDiskDxe / ScsiDiskDxe.inf
1 ## @file
2 #
3 # Scsi Disk driver. This driver detects the Scsi disk media and installs Block I/O Protocol
4 # on the device handle that holds the SCSI I/O Portocol.
5 #
6 # Copyright (c) 2006 - 2010, Intel Corporation. <BR>
7 # All rights reserved. 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 = ScsiDisk
20 FILE_GUID = 0A66E322-3740-4cce-AD62-BD172CECCA35
21 MODULE_TYPE = UEFI_DRIVER
22 VERSION_STRING = 1.0
23
24 ENTRY_POINT = InitializeScsiDisk
25
26 #
27 # The following information is for reference only and not required by the build tools.
28 #
29 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
30 #
31 # DRIVER_BINDING = gScsiDiskDriverBinding
32 # COMPONENT_NAME = gScsiDiskComponentName
33 # COMPONENT_NAME2 = gScsiDiskComponentName2
34 #
35
36 [Sources]
37 ComponentName.c
38 ScsiDisk.c
39 ScsiDisk.h
40
41 [Packages]
42 MdePkg/MdePkg.dec
43
44
45 [LibraryClasses]
46 UefiBootServicesTableLib
47 UefiScsiLib
48 BaseMemoryLib
49 MemoryAllocationLib
50 UefiLib
51 UefiDriverEntryPoint
52 DebugLib
53 DevicePathLib
54
55 [Protocols]
56 gEfiDiskInfoProtocolGuid ## BY_START
57 gEfiBlockIoProtocolGuid ## BY_START
58 gEfiScsiIoProtocolGuid ## TO_START
59 gEfiScsiPassThruProtocolGuid ## TO_START
60 gEfiExtScsiPassThruProtocolGuid ## TO_START
61
62 [Guids]
63 gEfiDiskInfoScsiInterfaceGuid ## SOMETIME_PRODUCES (The device is physical SCSI disk)
64 gEfiDiskInfoIdeInterfaceGuid ## SOMETIME_PRODUCES (The device is ATAPI device in IDE mode)
65 gEfiDiskInfoAhciInterfaceGuid ## SOMETIME_PRODUCES (The device is ATAPI device in AHCI mode)