diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-31 16:26:40 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-31 16:26:40 +0000 |
commit | 808def96aa4589fba9c2d0ea55837754a3b7a4f7 (patch) | |
tree | 0ea221c59abb2474c694e7ab5bd61006be77e47e /Tools/bin | |
parent | 9216450d1143056a50a5f916984a2d7faf590488 (diff) | |
download | edk2-platforms-808def96aa4589fba9c2d0ea55837754a3b7a4f7.tar.xz |
Retiring the ANT/JAVA build and removing the older EDK II packages that required ANT/JAVA.
Last Ant/Java build was r7166
Developers requiring the Java/Ant packages should checkout the branch from:
https://edk2.tianocore.org/svn/edk2/branches/AntJava
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7168 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/bin')
-rwxr-xr-x | Tools/bin/ContextTool | 14 | ||||
-rw-r--r-- | Tools/bin/ContextTool.bat | 73 | ||||
-rwxr-xr-x | Tools/bin/FrameworkWizard | 13 | ||||
-rw-r--r-- | Tools/bin/FrameworkWizard.bat | 74 | ||||
-rwxr-xr-x | Tools/bin/MigrationTools | 13 | ||||
-rw-r--r-- | Tools/bin/MigrationTools.bat | 74 | ||||
-rw-r--r-- | Tools/bin/SAVerify.bat | 55 | ||||
-rwxr-xr-x | Tools/bin/build | 12 | ||||
-rw-r--r-- | Tools/bin/build.bat | 39 | ||||
-rwxr-xr-x | Tools/bin/ckt | 13 | ||||
-rw-r--r-- | Tools/bin/ckt.bat | 73 | ||||
-rw-r--r-- | Tools/bin/dbtool | 13 | ||||
-rw-r--r-- | Tools/bin/dbtool.bat | 73 | ||||
-rw-r--r-- | Tools/bin/fixdb | 13 | ||||
-rw-r--r-- | Tools/bin/fixdb.bat | 73 | ||||
-rwxr-xr-x | Tools/bin/fw | 13 | ||||
-rw-r--r-- | Tools/bin/fw.bat | 74 | ||||
-rwxr-xr-x | Tools/bin/merge | 14 | ||||
-rw-r--r-- | Tools/bin/merge.bat | 73 |
19 files changed, 0 insertions, 799 deletions
diff --git a/Tools/bin/ContextTool b/Tools/bin/ContextTool deleted file mode 100755 index ed11ada8f5..0000000000 --- a/Tools/bin/ContextTool +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# 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. -# - -# Run ContextTool -java -cp "${WORKSPACE}/Tools/Jars/ContextTool.jar" org.tianocore.context.ContextMain $@ diff --git a/Tools/bin/ContextTool.bat b/Tools/bin/ContextTool.bat deleted file mode 100644 index 75bbb6ce8e..0000000000 --- a/Tools/bin/ContextTool.bat +++ /dev/null @@ -1,73 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_ContextTool
-if not exist %WORKSPACE%\Tools\Jars\ContextTool.jar (
- goto no_ContextTool
-)
-
-@REM Run ContextTool
-java -cp "%WORKSPACE%\Tools\Jars\ContextTool.jar" org.tianocore.context.ContextMain %*
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_ContextTool
-@echo.
-@echo !!! Please run edksetup.bat to build ContextTool.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
diff --git a/Tools/bin/FrameworkWizard b/Tools/bin/FrameworkWizard deleted file mode 100755 index efc650d95e..0000000000 --- a/Tools/bin/FrameworkWizard +++ /dev/null @@ -1,13 +0,0 @@ -# -# 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. -# - -# Run Framework Wizard -java -Xmx256m -cp "$CLASSPATH:$WORKSPACE/Tools/bin/FrameworkWizard.jar" org.tianocore.frameworkwizard.FrameworkWizardUI $1 diff --git a/Tools/bin/FrameworkWizard.bat b/Tools/bin/FrameworkWizard.bat deleted file mode 100644 index 056a3312da..0000000000 --- a/Tools/bin/FrameworkWizard.bat +++ /dev/null @@ -1,74 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_frameworkwizard
-if not exist %WORKSPACE%\Tools\bin\FrameworkWizard.jar (
- goto no_frameworkwizard
-)
-
-@REM Run Framework Wizard
-call "java" -Xmx256m org.tianocore.frameworkwizard.FrameworkWizardUI %%1
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_frameworkwizard
-@echo.
-@echo !!! Please run edksetup.bat to build FrameworkWizard.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
-
diff --git a/Tools/bin/MigrationTools b/Tools/bin/MigrationTools deleted file mode 100755 index b16f956dad..0000000000 --- a/Tools/bin/MigrationTools +++ /dev/null @@ -1,13 +0,0 @@ -# -# 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. -# - -# Run Migration Tool -java -cp "$CLASSPATH:$WORKSPACE/Tools/bin/MigrationTools.jar" org.tianocore.migration.MigrationTool diff --git a/Tools/bin/MigrationTools.bat b/Tools/bin/MigrationTools.bat deleted file mode 100644 index a29044144b..0000000000 --- a/Tools/bin/MigrationTools.bat +++ /dev/null @@ -1,74 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_migration
-if not exist %WORKSPACE%\Tools\bin\MigrationTools.jar (
- goto no_migration
-)
-
-@REM Run Migration
-call "java" org.tianocore.migration.MigrationTool
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_migration
-@echo.
-@echo !!! Please run edksetup.bat to build MigrationTools.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
-
diff --git a/Tools/bin/SAVerify.bat b/Tools/bin/SAVerify.bat deleted file mode 100644 index 8260d682e5..0000000000 --- a/Tools/bin/SAVerify.bat +++ /dev/null @@ -1,55 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@if "%JAVA_HOME%"=="" goto no_jdk
-@if "%WORKSPACE%"=="" goto no_wks
-
-@if "%1"=="" (goto usage)
-@if "%1"=="-h" (goto usage)
-@if "%1"=="-H" (goto usage)
-@if "%1"=="all" (goto all)
-@if "%1"=="ALL" (goto all) else (goto standalone)
-
-:usage
-@echo off
-@echo.
-@echo Verify SurfaceArea file(s)
-@echo.
-@echo Usage:
-@echo SAVerify.bat "MSA_FILE" - Verify SurfaceArea file named by MSA_FILE
-@echo SAVerify.bat all - Verify all SurfaceArea files under current directory and its sub-directories
-@echo SAVerify.bat -h - Print usage message
-@echo.
-goto end
-
-:all
- @echo off
- @for /R %%a in (*.msa *.fpd *.spd) do @ant -q -f %WORKSPACE%\Tools\Java\Source\SurfaceArea\build.xml validate -DSURFACE_AREA_FILE=%%a
- @echo on
- @goto end
-
-:standalone
- @ant -q -f %WORKSPACE%\Tools\Java\Source\SurfaceArea\build.xml validate -DSURFACE_AREA_FILE=%~f1
- @goto end
-
-:no_jdk
- @echo.
- @echo !!! Please set JAVA_HOME !!!
- @echo.
- @goto end
-
-:no_wks
- @echo.
- @echo !!! Please set WORKSPACE !!!
- @echo.
- @goto end
-
-:end
diff --git a/Tools/bin/build b/Tools/bin/build deleted file mode 100755 index b8eee97dfb..0000000000 --- a/Tools/bin/build +++ /dev/null @@ -1,12 +0,0 @@ -# -# 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. -# - -nice ant -logger org.tianocore.build.global.GenBuildLogger -f $WORKSPACE/build.xml $* diff --git a/Tools/bin/build.bat b/Tools/bin/build.bat deleted file mode 100644 index 778004abc9..0000000000 --- a/Tools/bin/build.bat +++ /dev/null @@ -1,39 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-@echo off
-
-set _ARGS=
-:check_arg
-if ""%1""=="""" goto arg_end
-if ""%1""==""-q"" goto ant_arg
-if ""%1""==""-v"" goto ant_arg
-if ""%1""==""-d"" goto ant_arg
-if ""%1""==""-e"" goto ant_arg
-if ""%1""==""-emacs"" goto ant_arg
-
-goto ant_target
-
-:ant_arg
- set _ARGS=%_ARGS% %1
- shift
- goto check_arg
-
-:ant_target
- set _ARGS=%_ARGS% -DBUILD_TARGET=%1
- shift
- goto check_arg
-
-:arg_end
-ant -logger org.tianocore.build.global.GenBuildLogger -f %WORKSPACE%/build.xml %_ARGS%
-
-set _ARGS=
-@echo on
-
diff --git a/Tools/bin/ckt b/Tools/bin/ckt deleted file mode 100755 index 4a0053f4c7..0000000000 --- a/Tools/bin/ckt +++ /dev/null @@ -1,13 +0,0 @@ -# -# 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. -# - -# Run CheckTools -java -cp "${WORKSPACE}/Tools/bin/CheckTools.jar" org.tianocore.CheckTools.CheckTools $@ diff --git a/Tools/bin/ckt.bat b/Tools/bin/ckt.bat deleted file mode 100644 index 651466a8f6..0000000000 --- a/Tools/bin/ckt.bat +++ /dev/null @@ -1,73 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_CheckTools
-if not exist %WORKSPACE%\Tools\bin\CheckTools.jar (
- goto no_CheckTools
-)
-
-@REM Run CheckTools
-call "java" -cp "%WORKSPACE%\Tools\bin\CheckTools.jar" org.tianocore.CheckTools.CheckTools %*
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_CheckTools
-@echo.
-@echo !!! Please run edksetup.bat to build CheckTools.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
diff --git a/Tools/bin/dbtool b/Tools/bin/dbtool deleted file mode 100644 index 311d49de46..0000000000 --- a/Tools/bin/dbtool +++ /dev/null @@ -1,13 +0,0 @@ -# -# 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. -# - -# Run DbTools -java -cp "${WORKSPACE}/Tools/Jars/DbTools.jar" org.tianocore.DbTools.DbTool $@ diff --git a/Tools/bin/dbtool.bat b/Tools/bin/dbtool.bat deleted file mode 100644 index 2a2bdab102..0000000000 --- a/Tools/bin/dbtool.bat +++ /dev/null @@ -1,73 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_DbTools
-if not exist %WORKSPACE%\Tools\Jars\DbTools.jar (
- goto no_DbTools
-)
-
-@REM Run Framework Wizard
-call "java" -cp "%WORKSPACE%\Tools\Jars\DbTools.jar" org.tianocore.DbTools.DbTool %*
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_DbTools
-@echo.
-@echo !!! Please run edksetup.bat to build DbTools.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
diff --git a/Tools/bin/fixdb b/Tools/bin/fixdb deleted file mode 100644 index 3865afe99d..0000000000 --- a/Tools/bin/fixdb +++ /dev/null @@ -1,13 +0,0 @@ -# -# 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. -# - -# Run DbTools -f -java -cp "${WORKSPACE}/Tools/Jars/DbTools.jar" org.tianocore.DbTools.DbTool -f $@ diff --git a/Tools/bin/fixdb.bat b/Tools/bin/fixdb.bat deleted file mode 100644 index ae0bd8c6d1..0000000000 --- a/Tools/bin/fixdb.bat +++ /dev/null @@ -1,73 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_DbTools
-if not exist %WORKSPACE%\Tools\Jars\DbTools.jar (
- goto no_DbTools
-)
-
-@REM Run Framework Wizard
-call "java" -cp "%WORKSPACE%\Tools\Jars\DbTools.jar" org.tianocore.DbTools.DbTool -f %*
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_DbTools
-@echo.
-@echo !!! Please run edksetup.bat to build DbTools.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
diff --git a/Tools/bin/fw b/Tools/bin/fw deleted file mode 100755 index 505fe7bc28..0000000000 --- a/Tools/bin/fw +++ /dev/null @@ -1,13 +0,0 @@ -# -# 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. -# - -# Run Framework Wizard -java -cp "$CLASSPATH:$WORKSPACE/Tools/bin/FrameworkWizard.jar" org.tianocore.frameworkwizard.FrameworkWizardUI $1 diff --git a/Tools/bin/fw.bat b/Tools/bin/fw.bat deleted file mode 100644 index 056a3312da..0000000000 --- a/Tools/bin/fw.bat +++ /dev/null @@ -1,74 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_frameworkwizard
-if not exist %WORKSPACE%\Tools\bin\FrameworkWizard.jar (
- goto no_frameworkwizard
-)
-
-@REM Run Framework Wizard
-call "java" -Xmx256m org.tianocore.frameworkwizard.FrameworkWizardUI %%1
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_frameworkwizard
-@echo.
-@echo !!! Please run edksetup.bat to build FrameworkWizard.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
-
diff --git a/Tools/bin/merge b/Tools/bin/merge deleted file mode 100755 index 8bd2efdbda..0000000000 --- a/Tools/bin/merge +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# 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. -# - -# Run Framework Wizard -java -cp "${WORKSPACE}/Tools/bin/Merge.jar" org.tianocore.Merge.Merge $@ diff --git a/Tools/bin/merge.bat b/Tools/bin/merge.bat deleted file mode 100644 index 82e4e10742..0000000000 --- a/Tools/bin/merge.bat +++ /dev/null @@ -1,73 +0,0 @@ -@REM
-@REM Copyright (c) 2006, Intel Corporation
-@REM All rights reserved. This program and the accompanying materials
-@REM are licensed and made available under the terms and conditions of the BSD License
-@REM which accompanies this distribution. The full text of the license may be found at
-@REM http://opensource.org/licenses/bsd-license.php
-@REM
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-@REM
-
-@echo off
-
-:check_java
-if "%JAVA_HOME%"=="" goto no_jdk
-:check_wks
-if "%WORKSPACE%"=="" goto no_wks
-:check_ant
-if "%ANT_HOME%"=="" goto no_ant
-:check_xmlbeans
-if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
-:check_surfacearea
-if not exist %WORKSPACE%\Tools\Jars\SurfaceArea.jar (
- goto no_surfacearea
-)
-:check_merge
-if not exist %WORKSPACE%\Tools\bin\Merge.jar (
- goto no_merge
-)
-
-@REM Run Merge
-call "java" -cp "%CLASSPATH%;%WORKSPACE%\Tools\bin\Merge.jar" org.tianocore.Merge.Merge %*
-
-goto end
-
-:no_jdk
-@echo.
-@echo !!! Please set JAVA_HOME !!!
-@echo.
-goto check_wks
-
-:no_wks
-@echo.
-@echo !!! Please set WORKSPACE !!!
-@echo.
-goto check_ant
-
-:no_ant
-@echo.
-@echo !!! Please set ANT_HOME !!!
-@echo.
-goto check_xmlbeans
-
-:no_xmlbeans
-@echo.
-@echo !!! Please set XMLBEANS_HOME !!!
-@echo.
-goto end
-
-:no_surfacearea
-@echo.
-@echo !!! Please run edksetup.bat to build SurfaceArea.jar !!!
-@echo.
-goto end
-
-:no_merge
-@echo.
-@echo !!! Please run edksetup.bat to build Merge.jar !!!
-@echo.
-goto end
-
-:end
-@echo on
|