1## @file 2# 3# SataController driver to manage SATA compliance IDE/AHCI host controllers. 4# 5# Copyright (c) 2011 - 2016, 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 = SataController 19 MODULE_UNI_FILE = SataControllerDxe.uni 20 FILE_GUID = 820C59BB-274C-43B2-83EA-DAC673035A59 21 MODULE_TYPE = UEFI_DRIVER 22 VERSION_STRING = 1.0 23 ENTRY_POINT = InitializeSataControllerDriver 24 25# 26# The following information is for reference only and not required by the build tools. 27# 28# VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64 29# 30# DRIVER_BINDING = gSataControllerDriverBinding 31# COMPONENT_NAME = gSataControllerComponentName 32# COMPONENT_NAME2 = gSataControllerComponentName2 33# 34 35[Sources] 36 ComponentName.c 37 SataController.c 38 SataController.h 39 40[Packages] 41 MdePkg/MdePkg.dec 42 43[LibraryClasses] 44 UefiDriverEntryPoint 45 DebugLib 46 UefiLib 47 BaseLib 48 BaseMemoryLib 49 MemoryAllocationLib 50 UefiBootServicesTableLib 51 52[Protocols] 53 gEfiPciIoProtocolGuid ## TO_START 54 gEfiIdeControllerInitProtocolGuid ## BY_START 55 56[UserExtensions.TianoCore."ExtraFiles"] 57 SataControllerDxeExtra.uni 58 59