]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
Refine USB Mass Storage Driver.
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMassStorageDxe / UsbMassStorageDxe.inf
1 #/** @file
2 # USB Mass Storage Driver that manages USB mass storage devices and
3 # produces Block I/O Protocol.
4 #
5 # The USB mass storage class is specified in two layers: the bottom layer
6 # is the transportation protocol. The top layer is the command set.
7 # The transportation layer provides the transportation of the command, data and result.
8 # The command set defines the command, data and result.
9 # The Bulk-Only-Transport and Control/Bulk/Interrupt transport are two transportation protocol.
10 # USB mass storage class adopts various industrial standard as its command set.
11 #
12 # Copyright (c) 2006 - 2008, Intel Corporation.
13 #
14 # All rights reserved. This program and the accompanying materials
15 # are licensed and made available under the terms and conditions of the BSD License
16 # which accompanies this distribution. The full text of the license may be found at
17 # http://opensource.org/licenses/bsd-license.php
18 #
19 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
21 #
22 #
23 #**/
24
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = UsbMassStorageDxe
28 FILE_GUID = 9FB4B4A7-42C0-4bcd-8540-9BCC6711F83E
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31
32 ENTRY_POINT = USBMassStorageEntryPoint
33
34 #
35 # The following information is for reference only and not required by the build tools.
36 #
37 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
38 #
39 # DRIVER_BINDING = gUSBMassDriverBinding
40 # COMPONENT_NAME = gUsbMassStorageComponentName
41 # COMPONENT_NAME2 = gUsbMassStorageComponentName2
42 #
43
44 [Sources.common]
45 UsbMassBoot.h
46 UsbMassImpl.h
47 UsbMassBot.h
48 UsbMassBot.c
49 ComponentName.c
50 UsbMassImpl.c
51 UsbMassBoot.c
52 UsbMassCbi.h
53 UsbMass.h
54 UsbMassCbi.c
55
56 [Packages]
57 MdePkg/MdePkg.dec
58
59 [LibraryClasses]
60 MemoryAllocationLib
61 UefiLib
62 UefiBootServicesTableLib
63 UefiDriverEntryPoint
64 BaseMemoryLib
65 DebugLib
66 DevicePathLib
67
68
69 [Protocols]
70 gEfiUsbIoProtocolGuid # PROTOCOL TO_START
71 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
72 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
73