From 2fdd0eafcc38ff3b5a0793ba56c05ebfe35009b2 Mon Sep 17 00:00:00 2001 From: qwang12 Date: Mon, 16 Jul 2007 08:19:29 +0000 Subject: mass cleanup inf name git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3257 6f19259b-4bc3-4df7-8a09-765794883524 --- .../RealTimeClockRuntimeDxe/PcRtc.inf | 105 --------------------- .../RealTimeClockRuntimeDxe/PcRtc.msa | 79 ---------------- .../RealTimeClockRuntimeDxe.inf | 105 +++++++++++++++++++++ .../RealTimeClockRuntimeDxe.msa | 79 ++++++++++++++++ 4 files changed, 184 insertions(+), 184 deletions(-) delete mode 100644 IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.inf delete mode 100644 IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.msa create mode 100644 IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf create mode 100644 IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.msa (limited to 'IntelFrameworkModulePkg/PcatCompatible') diff --git a/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.inf b/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.inf deleted file mode 100644 index fc2429881a..0000000000 --- a/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.inf +++ /dev/null @@ -1,105 +0,0 @@ -#/** @file -# PcRtc driver to install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL. -# -# This driver provides GetTime, SetTime, GetWakeupTime, SetWakeupTime services to Runtime Service Table. -# Copyright (c) 2006 - 2007, Intel Corporation. -# -# All rights reserved. -# This software and associated documentation (if any) is furnished -# under a license and may only be used or copied in accordance -# with the terms of the license. Except as permitted by such -# license, no part of this software or documentation may be -# reproduced, stored in a retrieval system, or transmitted in any -# form or by any means without the express written consent of -# Intel Corporation. -# -# -#**/ - -################################################################################ -# -# Defines Section - statements that will be processed to create a Makefile. -# -################################################################################ -[Defines] - INF_VERSION = 0x00010005 - BASE_NAME = PcRtc - FILE_GUID = 378D7B65-8DA9-4773-B6E4-A47826A833E1 - MODULE_TYPE = DXE_RUNTIME_DRIVER - VERSION_STRING = 1.0 - EDK_RELEASE_VERSION = 0x00020000 - EFI_SPECIFICATION_VERSION = 0x00020000 - - ENTRY_POINT = InitializePcRtc - -# -# The following information is for reference only and not required by the build tools. -# -# VALID_ARCHITECTURES = IA32 X64 EBC -# - -################################################################################ -# -# Sources Section - list of files that are required for the build to succeed. -# -################################################################################ - -[Sources.common] - Ia32/Ia32PcRtc.c - PcRtc.c - PcRtc.h - - -################################################################################ -# -# Package Dependency Section - list of Package files that are required for -# this module. -# -################################################################################ - -[Packages] - MdePkg/MdePkg.dec - IntelFrameworkPkg/IntelFrameworkPkg.dec - - -################################################################################ -# -# Library Class Section - list of Library Classes that are required for -# this module. -# -################################################################################ - -[LibraryClasses] - UefiRuntimeServicesTableLib - UefiRuntimeLib - UefiBootServicesTableLib - UefiDriverEntryPoint - TimerLib - IoLib - BaseMemoryLib - UefiLib - DebugLib - BaseLib - - -################################################################################ -# -# Protocol C Name Section - list of Protocol and Protocol Notify C Names -# that this module uses or produces. -# -################################################################################ - -[Protocols] - gEfiRealTimeClockArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED - - -################################################################################ -# -# Dependency Expression Section - list of Dependency expressions that are required for -# this module. -# -################################################################################ - -[Depex] - gEfiCpuArchProtocolGuid AND gEfiMetronomeArchProtocolGuid AND gEfiCpuIoProtocolGuid - diff --git a/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.msa b/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.msa deleted file mode 100644 index 9e911b8a03..0000000000 --- a/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.msa +++ /dev/null @@ -1,79 +0,0 @@ - - - - PcRtc - DXE_RUNTIME_DRIVER - 378D7B65-8DA9-4773-B6E4-A47826A833E1 - 1.0 - PcRtc driver to install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL. - This driver provides GetTime, SetTime, GetWakeupTime, SetWakeupTime services to Runtime Service Table. - Copyright (c) 2006 - 2007, Intel Corporation. - All rights reserved. - This software and associated documentation (if any) is furnished - under a license and may only be used or copied in accordance - with the terms of the license. Except as permitted by such - license, no part of this software or documentation may be - reproduced, stored in a retrieval system, or transmitted in any - form or by any means without the express written consent of - Intel Corporation. - FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052 - - - IA32 X64 EBC - false - PcRtc - - - - BaseLib - - - DebugLib - - - UefiLib - - - BaseMemoryLib - - - IoLib - - - TimerLib - - - UefiDriverEntryPoint - - - UefiBootServicesTableLib - - - UefiRuntimeLib - - - UefiRuntimeServicesTableLib - - - - PcRtc.h - PcRtc.c - Ia32PcRtc.dxs - Ia32/Ia32PcRtc.c - - - - - - - gEfiRealTimeClockArchProtocolGuid - - - - EFI_SPECIFICATION_VERSION 0x00020000 - EDK_RELEASE_VERSION 0x00020000 - - InitializePcRtc - - - diff --git a/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf b/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf new file mode 100644 index 0000000000..fc2429881a --- /dev/null +++ b/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf @@ -0,0 +1,105 @@ +#/** @file +# PcRtc driver to install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL. +# +# This driver provides GetTime, SetTime, GetWakeupTime, SetWakeupTime services to Runtime Service Table. +# Copyright (c) 2006 - 2007, Intel Corporation. +# +# All rights reserved. +# This software and associated documentation (if any) is furnished +# under a license and may only be used or copied in accordance +# with the terms of the license. Except as permitted by such +# license, no part of this software or documentation may be +# reproduced, stored in a retrieval system, or transmitted in any +# form or by any means without the express written consent of +# Intel Corporation. +# +# +#**/ + +################################################################################ +# +# Defines Section - statements that will be processed to create a Makefile. +# +################################################################################ +[Defines] + INF_VERSION = 0x00010005 + BASE_NAME = PcRtc + FILE_GUID = 378D7B65-8DA9-4773-B6E4-A47826A833E1 + MODULE_TYPE = DXE_RUNTIME_DRIVER + VERSION_STRING = 1.0 + EDK_RELEASE_VERSION = 0x00020000 + EFI_SPECIFICATION_VERSION = 0x00020000 + + ENTRY_POINT = InitializePcRtc + +# +# The following information is for reference only and not required by the build tools. +# +# VALID_ARCHITECTURES = IA32 X64 EBC +# + +################################################################################ +# +# Sources Section - list of files that are required for the build to succeed. +# +################################################################################ + +[Sources.common] + Ia32/Ia32PcRtc.c + PcRtc.c + PcRtc.h + + +################################################################################ +# +# Package Dependency Section - list of Package files that are required for +# this module. +# +################################################################################ + +[Packages] + MdePkg/MdePkg.dec + IntelFrameworkPkg/IntelFrameworkPkg.dec + + +################################################################################ +# +# Library Class Section - list of Library Classes that are required for +# this module. +# +################################################################################ + +[LibraryClasses] + UefiRuntimeServicesTableLib + UefiRuntimeLib + UefiBootServicesTableLib + UefiDriverEntryPoint + TimerLib + IoLib + BaseMemoryLib + UefiLib + DebugLib + BaseLib + + +################################################################################ +# +# Protocol C Name Section - list of Protocol and Protocol Notify C Names +# that this module uses or produces. +# +################################################################################ + +[Protocols] + gEfiRealTimeClockArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED + + +################################################################################ +# +# Dependency Expression Section - list of Dependency expressions that are required for +# this module. +# +################################################################################ + +[Depex] + gEfiCpuArchProtocolGuid AND gEfiMetronomeArchProtocolGuid AND gEfiCpuIoProtocolGuid + diff --git a/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.msa b/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.msa new file mode 100644 index 0000000000..9e911b8a03 --- /dev/null +++ b/IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.msa @@ -0,0 +1,79 @@ + + + + PcRtc + DXE_RUNTIME_DRIVER + 378D7B65-8DA9-4773-B6E4-A47826A833E1 + 1.0 + PcRtc driver to install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL. + This driver provides GetTime, SetTime, GetWakeupTime, SetWakeupTime services to Runtime Service Table. + Copyright (c) 2006 - 2007, Intel Corporation. + All rights reserved. + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052 + + + IA32 X64 EBC + false + PcRtc + + + + BaseLib + + + DebugLib + + + UefiLib + + + BaseMemoryLib + + + IoLib + + + TimerLib + + + UefiDriverEntryPoint + + + UefiBootServicesTableLib + + + UefiRuntimeLib + + + UefiRuntimeServicesTableLib + + + + PcRtc.h + PcRtc.c + Ia32PcRtc.dxs + Ia32/Ia32PcRtc.c + + + + + + + gEfiRealTimeClockArchProtocolGuid + + + + EFI_SPECIFICATION_VERSION 0x00020000 + EDK_RELEASE_VERSION 0x00020000 + + InitializePcRtc + + + -- cgit v1.2.3