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