summaryrefslogtreecommitdiff
path: root/EdkModulePkg/Universal/UserInterface
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/UserInterface
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/UserInterface')
-rw-r--r--EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/HiiDatabase.mbd44
-rw-r--r--EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/build.xml47
-rw-r--r--EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/DriverSample.mbd45
-rw-r--r--EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/build.xml47
-rw-r--r--EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/SetupBrowser.mbd43
-rw-r--r--EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/build.xml47
6 files changed, 0 insertions, 273 deletions
diff --git a/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/HiiDatabase.mbd b/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/HiiDatabase.mbd
deleted file mode 100644
index b8d2589..0000000
--- a/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/HiiDatabase.mbd
+++ /dev/null
@@ -1,44 +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>HiiDatabase</BaseName>
- <Guid>FCD337AB-B1D3-4EF8-957C-8048606FF670</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>UefiRuntimeServicesTableLib</Library>
- <Library>BaseLib</Library>
- <Library>BaseMemoryLib</Library>
- <Library>PeiDxeDebugLibReportStatusCode</Library>
- <Library>UefiDriverEntryPoint</Library>
- <Library>DxeMemoryAllocationLib</Library>
- <Library>DxeReportStatusCodeLib</Library>
- <Library>EdkIfrSupportLib</Library>
- </Libraries>
- <BuildOptions ToolChain="MSFT">
- <ImageEntryPoint>_ModuleEntryPoint</ImageEntryPoint>
- </BuildOptions>
-</ModuleBuildDescription>
diff --git a/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/build.xml b/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/build.xml
deleted file mode 100644
index f39f754..0000000
--- a/EdkModulePkg/Universal/UserInterface/HiiDataBase/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="HiiDatabase"><!--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/UserInterface/HiiDataBase/Dxe"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
- <target name="HiiDatabase">
- <GenBuild baseName="HiiDatabase" mbdFilename="${MODULE_DIR}/HiiDatabase.mbd" msaFilename="${MODULE_DIR}/HiiDatabase.msa"/>
- </target>
- <target depends="HiiDatabase_clean" name="clean"/>
- <target depends="HiiDatabase_cleanall" name="cleanall"/>
- <target name="HiiDatabase_clean">
- <OutputDirSetup baseName="HiiDatabase" mbdFilename="${MODULE_DIR}/HiiDatabase.mbd" msaFilename="${MODULE_DIR}/HiiDatabase.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/HiiDatabase_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/HiiDatabase_build.xml" target="clean"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
- </target>
- <target name="HiiDatabase_cleanall">
- <OutputDirSetup baseName="HiiDatabase" mbdFilename="${MODULE_DIR}/HiiDatabase.mbd" msaFilename="${MODULE_DIR}/HiiDatabase.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/HiiDatabase_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/HiiDatabase_build.xml" target="cleanall"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}"/>
- <delete dir="${DEST_DIR_DEBUG}"/>
- <delete>
- <fileset dir="${BIN_DIR}" includes="**HiiDatabase*"/>
- </delete>
- </target>
-</project> \ No newline at end of file
diff --git a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/DriverSample.mbd b/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/DriverSample.mbd
deleted file mode 100644
index 54bcafa..0000000
--- a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/DriverSample.mbd
+++ /dev/null
@@ -1,45 +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>DriverSample</BaseName>
- <Guid>FE3542FE-C1D3-4EF8-657C-8048606FF670</Guid>
- <Version>0</Version>
- <Description>FIX ME!</Description>
- <Copyright>Copyright (c) 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>UefiRuntimeServicesTableLib</Library>
- <Library>BaseLib</Library>
- <Library>DxeMemoryLib</Library>
- <Library>UefiLib</Library>
- <Library>UefiDriverEntryPoint</Library>
- <Library>DxeReportStatusCodeLib</Library>
- <Library>PeiDxeDebugLibReportStatusCode</Library>
- <Library>BasePrintLib</Library>
- <Library>EdkGraphicsLib</Library>
- <Library>EdkIfrSupportLib</Library>
- <Library>DxeMemoryAllocationLib</Library>
- <Library>HiiLib</Library>
- </Libraries>
-</ModuleBuildDescription>
diff --git a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/build.xml b/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/build.xml
deleted file mode 100644
index 5cc8859..0000000
--- a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/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="DriverSample"><!--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/UserInterface/SetupBrowser/Dxe/DriverSample"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
- <target name="DriverSample">
- <GenBuild baseName="DriverSample" mbdFilename="${MODULE_DIR}/DriverSample.mbd" msaFilename="${MODULE_DIR}/DriverSample.msa"/>
- </target>
- <target depends="DriverSample_clean" name="clean"/>
- <target depends="DriverSample_cleanall" name="cleanall"/>
- <target name="DriverSample_clean">
- <OutputDirSetup baseName="DriverSample" mbdFilename="${MODULE_DIR}/DriverSample.mbd" msaFilename="${MODULE_DIR}/DriverSample.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/DriverSample_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/DriverSample_build.xml" target="clean"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
- </target>
- <target name="DriverSample_cleanall">
- <OutputDirSetup baseName="DriverSample" mbdFilename="${MODULE_DIR}/DriverSample.mbd" msaFilename="${MODULE_DIR}/DriverSample.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/DriverSample_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/DriverSample_build.xml" target="cleanall"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}"/>
- <delete dir="${DEST_DIR_DEBUG}"/>
- <delete>
- <fileset dir="${BIN_DIR}" includes="**DriverSample*"/>
- </delete>
- </target>
-</project> \ No newline at end of file
diff --git a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/SetupBrowser.mbd b/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/SetupBrowser.mbd
deleted file mode 100644
index 609bcf8..0000000
--- a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/SetupBrowser.mbd
+++ /dev/null
@@ -1,43 +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>SetupBrowser</BaseName>
- <Guid>EBf342FE-B1D3-4EF8-957C-8048606FF670</Guid>
- <Version>0</Version>
- <Description>FIX ME!</Description>
- <Copyright>Copyright (c) 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>UefiRuntimeServicesTableLib</Library>
- <Library>BaseLib</Library>
- <Library>DxeReportStatusCodeLib</Library>
- <Library>PeiDxeDebugLibReportStatusCode</Library>
- <Library>DxeMemoryLib</Library>
- <Library>BasePrintLib</Library>
- <Library>UefiDriverEntryPoint</Library>
- <Library>DxeMemoryAllocationLib</Library>
- <Library>EdkGraphicsLib</Library>
- <Library>HiiLib</Library>
- </Libraries>
-</ModuleBuildDescription>
diff --git a/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/build.xml b/EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/build.xml
deleted file mode 100644
index 8e3b5c5..0000000
--- a/EdkModulePkg/Universal/UserInterface/SetupBrowser/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="SetupBrowser"><!--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/UserInterface/SetupBrowser/Dxe"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
- <target name="SetupBrowser">
- <GenBuild baseName="SetupBrowser" mbdFilename="${MODULE_DIR}/SetupBrowser.mbd" msaFilename="${MODULE_DIR}/SetupBrowser.msa"/>
- </target>
- <target depends="SetupBrowser_clean" name="clean"/>
- <target depends="SetupBrowser_cleanall" name="cleanall"/>
- <target name="SetupBrowser_clean">
- <OutputDirSetup baseName="SetupBrowser" mbdFilename="${MODULE_DIR}/SetupBrowser.mbd" msaFilename="${MODULE_DIR}/SetupBrowser.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/SetupBrowser_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/SetupBrowser_build.xml" target="clean"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
- </target>
- <target name="SetupBrowser_cleanall">
- <OutputDirSetup baseName="SetupBrowser" mbdFilename="${MODULE_DIR}/SetupBrowser.mbd" msaFilename="${MODULE_DIR}/SetupBrowser.msa"/>
- <if>
- <available file="${DEST_DIR_OUTPUT}/SetupBrowser_build.xml"/>
- <then>
- <ant antfile="${DEST_DIR_OUTPUT}/SetupBrowser_build.xml" target="cleanall"/>
- </then>
- </if>
- <delete dir="${DEST_DIR_OUTPUT}"/>
- <delete dir="${DEST_DIR_DEBUG}"/>
- <delete>
- <fileset dir="${BIN_DIR}" includes="**SetupBrowser*"/>
- </delete>
- </target>
-</project> \ No newline at end of file