From 1d61d06d1806eb337bfc06c21c25475d735401db Mon Sep 17 00:00:00 2001 From: hche10x Date: Thu, 13 Sep 2007 02:36:42 +0000 Subject: move branch for FatBinPkg git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/branches/WW38_EDKII_Prime_Richford_3_Release@3824 6f19259b-4bc3-4df7-8a09-765794883524 --- FatBinPkg/EnhancedFatDxe/Ebc/Fat.efi | Bin 0 -> 106496 bytes FatBinPkg/EnhancedFatDxe/Fat.inf | 44 ++++++++++++++++++++++++++++++++++ FatBinPkg/EnhancedFatDxe/Fat.msa | 34 ++++++++++++++++++++++++++ FatBinPkg/EnhancedFatDxe/Ia32/Fat.efi | Bin 0 -> 15776 bytes FatBinPkg/EnhancedFatDxe/Ipf/Fat.efi | Bin 0 -> 88032 bytes FatBinPkg/EnhancedFatDxe/ReadMe.txt | 2 ++ FatBinPkg/EnhancedFatDxe/X64/Fat.efi | Bin 0 -> 21824 bytes FatBinPkg/FatBinPkg.dec | 28 ++++++++++++++++++++++ FatBinPkg/FatBinPkg.nspd | 25 +++++++++++++++++++ 9 files changed, 133 insertions(+) create mode 100644 FatBinPkg/EnhancedFatDxe/Ebc/Fat.efi create mode 100644 FatBinPkg/EnhancedFatDxe/Fat.inf create mode 100644 FatBinPkg/EnhancedFatDxe/Fat.msa create mode 100644 FatBinPkg/EnhancedFatDxe/Ia32/Fat.efi create mode 100644 FatBinPkg/EnhancedFatDxe/Ipf/Fat.efi create mode 100644 FatBinPkg/EnhancedFatDxe/ReadMe.txt create mode 100644 FatBinPkg/EnhancedFatDxe/X64/Fat.efi create mode 100644 FatBinPkg/FatBinPkg.dec create mode 100644 FatBinPkg/FatBinPkg.nspd diff --git a/FatBinPkg/EnhancedFatDxe/Ebc/Fat.efi b/FatBinPkg/EnhancedFatDxe/Ebc/Fat.efi new file mode 100644 index 0000000..caf8a3f Binary files /dev/null and b/FatBinPkg/EnhancedFatDxe/Ebc/Fat.efi differ diff --git a/FatBinPkg/EnhancedFatDxe/Fat.inf b/FatBinPkg/EnhancedFatDxe/Fat.inf new file mode 100644 index 0000000..671e278 --- /dev/null +++ b/FatBinPkg/EnhancedFatDxe/Fat.inf @@ -0,0 +1,44 @@ +#/** @file +# Make a FFS section for an FV that contains the FAT driver.*.FFS files are compressed FFS sections. +# +# This is the FAT 32 EFI/Tiano Driver +# Copyright 2007, Intel Corporation +# +# All rights reserved. This program and the accompanying materials +# are licensed and made available under the terms and conditions of the BSD License +# which accompanies this distribution. The full text of the license may be found at +# http://opensource.org/licenses/bsd-license.php +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# +# +#**/ + +[Defines] + INF_VERSION = 0x00010005 + BASE_NAME = Fat + FILE_GUID = 961578FE-B6B7-44c3-AF35-6BC705CD2B1F + MODULE_TYPE = UEFI_DRIVER + VERSION_STRING = 1.0 + EDK_RELEASE_VERSION = 0x00020000 + EFI_SPECIFICATION_VERSION = 0x00020000 + + +# +# The following information is for reference only and not required by the build tools. +# +# VALID_ARCHITECTURES = IA32 X64 IPF EBC +# + +[Binaries.Ia32] + FW|Ia32/Fat.efi + +[Binaries.X64] + FW|X64/Fat.efi + +[Binaries.IPF] + FW|Ipf/Fat.efi + +[Binaries.EBC] + FW|Ebc/Fat.efi + diff --git a/FatBinPkg/EnhancedFatDxe/Fat.msa b/FatBinPkg/EnhancedFatDxe/Fat.msa new file mode 100644 index 0000000..44eaf3f --- /dev/null +++ b/FatBinPkg/EnhancedFatDxe/Fat.msa @@ -0,0 +1,34 @@ + + + + Fat + UEFI_DRIVER + 961578FE-B6B7-44c3-AF35-6BC705CD2B1F + 1.0 + Make a FFS section for an FV that contains the FAT driver.*.FFS files are compressed FFS sections. + This is the FAT 32 EFI/Tiano Driver + Copyright 2006, Intel Corporation + All rights reserved. This program and the accompanying materials + are licensed and made available under the terms and conditions of the BSD License + which accompanies this distribution. The full text of the license may be found at + http://opensource.org/licenses/bsd-license.php + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052 + + + IA32 X64 IPF EBC + true + Fat + + + Ia32/Fat.efi + Ipf/Fat.efi + X64/Fat.efi + Ebc/Fat.efi + + + EFI_SPECIFICATION_VERSION 0x00020000 + EDK_RELEASE_VERSION 0x00020000 + + \ No newline at end of file diff --git a/FatBinPkg/EnhancedFatDxe/Ia32/Fat.efi b/FatBinPkg/EnhancedFatDxe/Ia32/Fat.efi new file mode 100644 index 0000000..599e171 Binary files /dev/null and b/FatBinPkg/EnhancedFatDxe/Ia32/Fat.efi differ diff --git a/FatBinPkg/EnhancedFatDxe/Ipf/Fat.efi b/FatBinPkg/EnhancedFatDxe/Ipf/Fat.efi new file mode 100644 index 0000000..f1eb2fc Binary files /dev/null and b/FatBinPkg/EnhancedFatDxe/Ipf/Fat.efi differ diff --git a/FatBinPkg/EnhancedFatDxe/ReadMe.txt b/FatBinPkg/EnhancedFatDxe/ReadMe.txt new file mode 100644 index 0000000..1fa0a0b --- /dev/null +++ b/FatBinPkg/EnhancedFatDxe/ReadMe.txt @@ -0,0 +1,2 @@ +FAT Binary Package does not provide any debug infrastructure. The PCD value of PcdDebugPropertyMask is set to 0 to disable Assert, Debug Print, Debug Code, Clear Memory, Assert Breakpoint and Assert Dead Loop. +It also has no patchable-in-module PCD settings. So it only contains UEFI image files. \ No newline at end of file diff --git a/FatBinPkg/EnhancedFatDxe/X64/Fat.efi b/FatBinPkg/EnhancedFatDxe/X64/Fat.efi new file mode 100644 index 0000000..7252aec Binary files /dev/null and b/FatBinPkg/EnhancedFatDxe/X64/Fat.efi differ diff --git a/FatBinPkg/FatBinPkg.dec b/FatBinPkg/FatBinPkg.dec new file mode 100644 index 0000000..3346d4f --- /dev/null +++ b/FatBinPkg/FatBinPkg.dec @@ -0,0 +1,28 @@ +#/** @file +# This is the Binary Package for the FAT dirver +# +# This package provides FAT drivers which are not licensed under BSD. +# Copyright (c) 2007, Intel Corporation. +# +# All rights reserved. +# This program and the accompanying materials are licensed and made available +# under the terms and conditions of the BSD License which accompanies this distribution. +# The full text of the license may be found at http://opensource.org/licenses/bsd-license.php +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES +# OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# +#**/ + + +################################################################################ +# +# Defines Section - statements that will be processed to create a Makefile. +# +################################################################################ + +[Defines] + DEC_SPECIFICATION = 0x00010005 + PACKAGE_NAME = FatBinPkg + PACKAGE_GUID = EEAC1173-A27D-4c1a-958F-0A7F21C0FFA0 + PACKAGE_VERSION = 0.1 + diff --git a/FatBinPkg/FatBinPkg.nspd b/FatBinPkg/FatBinPkg.nspd new file mode 100644 index 0000000..f56a9f4 --- /dev/null +++ b/FatBinPkg/FatBinPkg.nspd @@ -0,0 +1,25 @@ + + + + FatBinPkg + EEAC1173-A27D-4c1a-958F-0A7F21C0FFA0 + 0.1 + This is the Binary Package for the FAT dirver + This package provides FAT drivers which are not licensed under BSD. + Copyright (c) 2007, Intel Corporation. + All rights reserved. + This program and the accompanying materials are licensed and made available + under the terms and conditions of the BSD License which accompanies this distribution. + The full text of the license may be found at http://opensource.org/licenses/bsd-license.php + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES + OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052 + + + true + false + + + EnhancedFatDxe/Fat.msa + + \ No newline at end of file -- cgit v1.1