summaryrefslogtreecommitdiff
path: root/EdkModulePkg/Universal/Disk
diff options
context:
space:
mode:
authorjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-07 09:28:33 +0000
committerjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-07 09:28:33 +0000
commit44050d53afe3a38812977a3e8f5f2860237a3690 (patch)
tree0138fcdbb0d3082353dd090eca504824566a6179 /EdkModulePkg/Universal/Disk
parentf46d7c213b49f97e68d6339aa9df3f70b15d9b59 (diff)
downloadedk2-44050d53afe3a38812977a3e8f5f2860237a3690.zip
edk2-44050d53afe3a38812977a3e8f5f2860237a3690.tar.gz
edk2-44050d53afe3a38812977a3e8f5f2860237a3690.tar.bz2
Obsoleted by new schema and new build tools.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@821 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkModulePkg/Universal/Disk')
-rw-r--r--EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd41
-rw-r--r--EdkModulePkg/Universal/Disk/DiskIo/Dxe/build.xml47
-rw-r--r--EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.mbd42
-rw-r--r--EdkModulePkg/Universal/Disk/Partition/Dxe/build.xml47
-rw-r--r--EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.mbd38
-rw-r--r--EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/build.xml47
6 files changed, 0 insertions, 262 deletions
diff --git a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd
deleted file mode 100644
index 36b10a9..0000000
--- a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Copyright (c) 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.
--->
-<ModuleBuildDescription xmlns="http://www.TianoCore.org/2006/Edk2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.TianoCore.org/2006/Edk2.0 http://www.TianoCore.org/2006/Edk2.0/SurfaceArea.xsd">
- <MbdHeader>
- <BaseName>DiskIo</BaseName>
- <Guid>6B38F7B4-AD98-40e9-9093-ACA2B5A253C4</Guid>
- <Version>0</Version>
- <Description>FIX ME!</Description>
- <Copyright>Copyright (c) 2004-2006, Intel Corporation</Copyright>
- <License>
- 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.
- </License>
- <Created>2006-03-12 17:09</Created>
- <Modified>2006-03-19 15:19</Modified>
- </MbdHeader>
- <Libraries>
- <Library>UefiBootServicesTableLib</Library>
- <Library>DxeMemoryLib</Library>
- <Library>UefiLib</Library>
- <Library>UefiDriverEntryPoint</Library>
- <Library>UefiDriverModelLib</Library>
- <Library>DxeReportStatusCodeLib</Library>
- <Library>PeiDxeDebugLibReportStatusCode</Library>
- <Library>BaseLib</Library>
- <Library>DxeMemoryAllocationLib</Library>
- </Libraries>
-</ModuleBuildDescription>
diff --git a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/build.xml b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/build.xml
deleted file mode 100644
index 6c19fe4..0000000
--- a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/build.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><!-- Copyright (c) 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.-->
-<project basedir="." default="DiskIo"><!--Apply external ANT tasks-->
- <taskdef resource="GenBuild.tasks"/>
- <taskdef resource="net/sf/antcontrib/antlib.xml"/>
- <property environment="env"/>
- <property name="WORKSPACE_DIR" value="${env.WORKSPACE}"/>
- <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml"/><!--MODULE_RELATIVE PATH is relative to PACKAGE_DIR-->
- <property name="MODULE_RELATIVE_PATH" value="Universal/Disk/DiskIo/Dxe"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
- <target name="DiskIo">
- <GenBuild baseName="DiskIo" mbdFilename="${MODULE_DIR}/DiskIo.mbd" msaFilename="${MODULE_DIR}/DiskIo.msa"/>
- </target>
- <target depends="DiskIo_clean" name="clean"/>
- <target depends="DiskIo_cleanall" name="cleanall"/>
- <target name="DiskIo_clean">
- <OutputDirSetup baseName="DiskIo" mbdFilename="${MODULE_DIR}/DiskIo.mbd" msaFilename="${MODULE_DIR}/DiskIo.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/DiskIo_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/DiskIo_build.xml" target="clean"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
- </target>
- <target name="DiskIo_cleanall">
- <OutputDirSetup baseName="DiskIo" mbdFilename="${MODULE_DIR}/DiskIo.mbd" msaFilename="${MODULE_DIR}/DiskIo.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/DiskIo_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/DiskIo_build.xml" target="cleanall"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}"/>
- <delete dir="${DEST_DIR_DEBUG}"/>
- <delete>
- <fileset dir="${BIN_DIR}" includes="**DiskIo*"/>
- </delete>
- </target>
-</project> \ No newline at end of file
diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.mbd b/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.mbd
deleted file mode 100644
index 20e96d2..0000000
--- a/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.mbd
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Copyright (c) 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.
--->
-<ModuleBuildDescription xmlns="http://www.TianoCore.org/2006/Edk2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.TianoCore.org/2006/Edk2.0 http://www.TianoCore.org/2006/Edk2.0/SurfaceArea.xsd">
- <MbdHeader>
- <BaseName>Partition</BaseName>
- <Guid>1FA1F39E-FEFF-4aae-BD7B-38A070A3B609</Guid>
- <Version>0</Version>
- <Description>FIX ME!</Description>
- <Copyright>Copyright (c) 2004-2006, Intel Corporation</Copyright>
- <License>
- 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.
- </License>
- <Created>2006-03-12 17:09</Created>
- <Modified>2006-03-19 15:19</Modified>
- </MbdHeader>
- <Libraries>
- <Library>UefiBootServicesTableLib</Library>
- <Library>BaseLib</Library>
- <Library>DxeMemoryLib</Library>
- <Library>UefiLib</Library>
- <Library>UefiDriverEntryPoint</Library>
- <Library>UefiDriverModelLib</Library>
- <Library>DxeMemoryAllocationLib</Library>
- <Library>DxeReportStatusCodeLib</Library>
- <Library>PeiDxeDebugLibReportStatusCode</Library>
- <Library>UefiDevicePathLib</Library>
- </Libraries>
-</ModuleBuildDescription>
diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/build.xml b/EdkModulePkg/Universal/Disk/Partition/Dxe/build.xml
deleted file mode 100644
index 42d5194..0000000
--- a/EdkModulePkg/Universal/Disk/Partition/Dxe/build.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><!-- Copyright (c) 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.-->
-<project basedir="." default="Partition"><!--Apply external ANT tasks-->
- <taskdef resource="GenBuild.tasks"/>
- <taskdef resource="net/sf/antcontrib/antlib.xml"/>
- <property environment="env"/>
- <property name="WORKSPACE_DIR" value="${env.WORKSPACE}"/>
- <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml"/><!--MODULE_RELATIVE PATH is relative to PACKAGE_DIR-->
- <property name="MODULE_RELATIVE_PATH" value="Universal/Disk/Partition/Dxe"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
- <target name="Partition">
- <GenBuild baseName="Partition" mbdFilename="${MODULE_DIR}/Partition.mbd" msaFilename="${MODULE_DIR}/Partition.msa"/>
- </target>
- <target depends="Partition_clean" name="clean"/>
- <target depends="Partition_cleanall" name="cleanall"/>
- <target name="Partition_clean">
- <OutputDirSetup baseName="Partition" mbdFilename="${MODULE_DIR}/Partition.mbd" msaFilename="${MODULE_DIR}/Partition.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/Partition_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/Partition_build.xml" target="clean"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
- </target>
- <target name="Partition_cleanall">
- <OutputDirSetup baseName="Partition" mbdFilename="${MODULE_DIR}/Partition.mbd" msaFilename="${MODULE_DIR}/Partition.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/Partition_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/Partition_build.xml" target="cleanall"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}"/>
- <delete dir="${DEST_DIR_DEBUG}"/>
- <delete>
- <fileset dir="${BIN_DIR}" includes="**Partition*"/>
- </delete>
- </target>
-</project> \ No newline at end of file
diff --git a/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.mbd b/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.mbd
deleted file mode 100644
index 8ea3fa1..0000000
--- a/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.mbd
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Copyright (c) 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.
--->
-<ModuleBuildDescription xmlns="http://www.TianoCore.org/2006/Edk2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.TianoCore.org/2006/Edk2.0 http://www.TianoCore.org/2006/Edk2.0/SurfaceArea.xsd">
- <MbdHeader>
- <BaseName>English</BaseName>
- <Guid>CD3BAFB6-50FB-4fe8-8E4E-AB74D2C1A600</Guid>
- <Version>0</Version>
- <Description>FIX ME!</Description>
- <Copyright>Copyright (c) 2004-2006, Intel Corporation</Copyright>
- <License>
- 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.
- </License>
- <Created>2006-03-12 17:09</Created>
- <Modified>2006-03-19 15:19</Modified>
- </MbdHeader>
- <Libraries>
- <Library>UefiBootServicesTableLib</Library>
- <Library>BaseLib</Library>
- <Library>DxeMemoryLib</Library>
- <Library>UefiDriverEntryPoint</Library>
- <Library>DxeReportStatusCodeLib</Library>
- <Library>PeiDxeDebugLibReportStatusCode</Library>
- </Libraries>
-</ModuleBuildDescription>
diff --git a/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/build.xml b/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/build.xml
deleted file mode 100644
index ab86d5a..0000000
--- a/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/build.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><!-- Copyright (c) 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.-->
-<project basedir="." default="English"><!--Apply external ANT tasks-->
- <taskdef resource="GenBuild.tasks"/>
- <taskdef resource="net/sf/antcontrib/antlib.xml"/>
- <property environment="env"/>
- <property name="WORKSPACE_DIR" value="${env.WORKSPACE}"/>
- <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml"/><!--MODULE_RELATIVE PATH is relative to PACKAGE_DIR-->
- <property name="MODULE_RELATIVE_PATH" value="Universal/Disk/UnicodeCollation/English/Dxe"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
- <target name="English">
- <GenBuild baseName="English" mbdFilename="${MODULE_DIR}/English.mbd" msaFilename="${MODULE_DIR}/English.msa"/>
- </target>
- <target depends="English_clean" name="clean"/>
- <target depends="English_cleanall" name="cleanall"/>
- <target name="English_clean">
- <OutputDirSetup baseName="English" mbdFilename="${MODULE_DIR}/English.mbd" msaFilename="${MODULE_DIR}/English.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/English_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/English_build.xml" target="clean"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
- </target>
- <target name="English_cleanall">
- <OutputDirSetup baseName="English" mbdFilename="${MODULE_DIR}/English.mbd" msaFilename="${MODULE_DIR}/English.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/English_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/English_build.xml" target="cleanall"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}"/>
- <delete dir="${DEST_DIR_DEBUG}"/>
- <delete>
- <fileset dir="${BIN_DIR}" includes="**English*"/>
- </delete>
- </target>
-</project> \ No newline at end of file