]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
0cc3157b7a5781265af4d70176641d2392544da2
[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 # This module refers to following specifications:
12 # 1. USB Mass Storage Specification for Bootability, Revision 1.0
13 # 2. USB Mass Storage Class Control/Bulk/Interrupt (CBI) Transport, Revision 1.1
14 # 3. USB Mass Storage Class Bulk-Only Transport, Revision 1.0.
15 # 4. UEFI Specification, v2.1
16 #
17 # Copyright (c) 2006 - 2008, Intel Corporation.
18 #
19 # All rights reserved. This program and the accompanying materials
20 # are licensed and made available under the terms and conditions of the BSD License
21 # which accompanies this distribution. The full text of the license may be found at
22 # http://opensource.org/licenses/bsd-license.php
23 #
24 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
25 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
26 #
27 #
28 #**/
29
30 [Defines]
31 INF_VERSION = 0x00010005
32 BASE_NAME = UsbMassStorageDxe
33 FILE_GUID = 9FB4B4A7-42C0-4bcd-8540-9BCC6711F83E
34 MODULE_TYPE = UEFI_DRIVER
35 VERSION_STRING = 1.0
36 ENTRY_POINT = USBMassStorageEntryPoint
37
38 #
39 # The following information is for reference only and not required by the build tools.
40 #
41 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
42 #
43 # DRIVER_BINDING = gUSBMassDriverBinding
44 # COMPONENT_NAME = gUsbMassStorageComponentName
45 # COMPONENT_NAME2 = gUsbMassStorageComponentName2
46 #
47
48 [Sources.common]
49 UsbMassBoot.h
50 UsbMassImpl.h
51 UsbMassBot.h
52 UsbMassBot.c
53 ComponentName.c
54 UsbMassImpl.c
55 UsbMassBoot.c
56 UsbMassCbi.h
57 UsbMass.h
58 UsbMassCbi.c
59
60 [Packages]
61 MdePkg/MdePkg.dec
62
63 [LibraryClasses]
64 BaseLib
65 MemoryAllocationLib
66 UefiLib
67 UefiBootServicesTableLib
68 UefiDriverEntryPoint
69 BaseMemoryLib
70 DebugLib
71 DevicePathLib
72
73
74 [Protocols]
75 gEfiUsbIoProtocolGuid ## TO_START
76 gEfiDevicePathProtocolGuid ## TO_START
77 gEfiBlockIoProtocolGuid ## BY_START
78