1 #/** @file 2 # 3 # Component description file for Bds module 4 # 5 # Copyright (c) 2008, Intel Corporation. All rights reserved.<BR> 6 # This program and the accompanying materials 7 # are licensed and made available under the terms and conditions of the BSD License 8 # which accompanies this distribution. The full text of the license may be found at 9 # http://opensource.org/licenses/bsd-license.php 10 # 11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 # 14 #**/ 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = SimpleTextInOutSerial 19 FILE_GUID = 6696936D-3637-467C-87CB-14EA8248948C 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 23 ENTRY_POINT = SimpleTextInOutEntryPoint 24 25 26 [Sources.common] 27 SimpleTextInOut.c 28 29 30 [Packages] 31 MdePkg/MdePkg.dec 32 EmbeddedPkg/EmbeddedPkg.dec 33 34 [LibraryClasses] 35 BaseLib 36 ReportStatusCodeLib 37 MemoryAllocationLib 38 UefiLib 39 UefiBootServicesTableLib 40 BaseMemoryLib 41 DebugLib 42 UefiDriverEntryPoint 43 SerialPortLib 44 45 [Guids] 46 47 48 [Protocols] 49 gEfiSimpleTextInProtocolGuid 50 gEfiSimpleTextOutProtocolGuid 51 gEfiSerialIoProtocolGuid 52 gEfiDevicePathProtocolGuid 53 54 [FixedPcd] 55 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate 56 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits 57 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity 58 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits 59 60 61 [depex] 62 TRUE 63