summaryrefslogtreecommitdiff
path: root/EdkModulePkg/Universal/Disk/DiskIo/Dxe
diff options
context:
space:
mode:
Diffstat (limited to 'EdkModulePkg/Universal/Disk/DiskIo/Dxe')
-rw-r--r--EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd41
-rw-r--r--EdkModulePkg/Universal/Disk/DiskIo/Dxe/build.xml47
2 files changed, 0 insertions, 88 deletions
diff --git a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.mbd
deleted file mode 100644
index 36b10a9934..0000000000
--- 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 6c19fe4059..0000000000
--- 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