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