Sync tool code to BuildTools project r1783.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9623 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Binary file not shown.
Binary file not shown.
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/BootSectImage
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/BootSectImage
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/BuildEnv
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/BuildEnv
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/Ecc
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/Ecc
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiLdrImage
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiLdrImage
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenCrc32
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenCrc32
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
3
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenDepex
Normal file
3
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenDepex
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/AutoGen/`basename $0`.py $*
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFds
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFds
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFfs
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFfs
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFv
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFv
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFw
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenFw
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenPage
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenPage
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenSec
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenSec
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenVtf
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GenVtf
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GnuGenBootSector
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/GnuGenBootSector
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaCompress
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaCompress
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/RunBinToolFromBuildDir
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/RunBinToolFromBuildDir
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/RunToolFromSource
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/RunToolFromSource
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/Split
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/Split
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/TargetTool
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/TargetTool
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/TianoCompress
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/TianoCompress
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/Trim
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/Trim
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/VfrCompile
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/VfrCompile
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/VolInfo
Normal file
29
BaseTools/Bin/CYGWIN_NT-5.1-i686/VolInfo
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
#exec `dirname $0`/../../../../C/bin/`basename $0` $*
|
||||
|
||||
TOOL_BASENAME=`basename $0`
|
||||
|
||||
if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
|
||||
then
|
||||
exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
|
||||
elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
|
||||
then
|
||||
if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
|
||||
echo You may need to run:
|
||||
echo " make -C $EDK_TOOLS_PATH/Source/C"
|
||||
else
|
||||
exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
|
||||
fi
|
||||
elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
|
||||
then
|
||||
exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
||||
else
|
||||
echo Unable to find the real \'$TOOL_BASENAME\' to run
|
||||
echo This message was printed by
|
||||
echo " $0"
|
||||
exit -1
|
||||
fi
|
||||
|
@@ -25,14 +25,15 @@
|
||||
#
|
||||
import sys
|
||||
import os
|
||||
import subprocess
|
||||
import subprocess
|
||||
import pipes
|
||||
|
||||
#
|
||||
# Convert using cygpath command line tool
|
||||
# Currently not used, but just in case we need it in the future
|
||||
#
|
||||
def ConvertCygPathToDosViacygpath(CygPath):
|
||||
p = subprocess.Popen("cygpath -m " + CygPath, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True)
|
||||
p = subprocess.Popen("cygpath -m " + pipes.quote(CygPath), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True)
|
||||
return p.stdout.read().strip()
|
||||
|
||||
#
|
||||
@@ -45,32 +46,36 @@ def ConvertCygPathToDos(CygPath):
|
||||
else:
|
||||
DosPath = CygPath
|
||||
|
||||
# need the extra \\ as we are making a string to pass to a command
|
||||
return DosPath.replace('/','\\\\')
|
||||
# pipes.quote will add the extra \\ for us.
|
||||
return DosPath.replace('/','\\')
|
||||
|
||||
|
||||
# we receive our options as a list, but we will be passing them to the shell as a line
|
||||
# this means we have to requote things as they will get one round of unquoting.
|
||||
# we can't set "shell=False" because we are running commands from the PATH and
|
||||
# if you don't use the shell you don't get a PATH search.
|
||||
def main(argv):
|
||||
|
||||
# use 1st argument as name of tool to call
|
||||
Command = sys.argv[1]
|
||||
Command = pipes.quote(sys.argv[1]);
|
||||
|
||||
ExceptionList = ["/interwork"]
|
||||
|
||||
for arg in argv:
|
||||
if arg.find('/') == -1:
|
||||
# if we don't need to convert just add to the command line
|
||||
Command = Command + ' ' + arg
|
||||
Command = Command + ' ' + pipes.quote(arg)
|
||||
elif arg in ExceptionList:
|
||||
# if it is in the list, then don't do a cygpath
|
||||
# assembler stuff after --apcs has the /.
|
||||
Command = Command + ' ' + arg
|
||||
Command = Command + ' ' + pipes.quote(arg)
|
||||
else:
|
||||
if ((arg[0] == '-') and (arg[1] == 'I' or arg[1] == 'i')):
|
||||
CygPath = arg[0] + arg[1] + ConvertCygPathToDos(arg[2:])
|
||||
else:
|
||||
CygPath = ConvertCygPathToDos(arg)
|
||||
|
||||
Command = Command + ' ' + CygPath
|
||||
|
||||
Command = Command + ' ' + pipes.quote(CygPath)
|
||||
|
||||
# call the real tool with the converted paths
|
||||
return subprocess.call(Command, shell=True)
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/build
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/build
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/fpd2dsc
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/fpd2dsc
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/msa2inf
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/msa2inf
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/spd2dec
Normal file
5
BaseTools/Bin/CYGWIN_NT-5.1-i686/spd2dec
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
#python `dirname $0`/RunToolFromSource.py `basename $0` $*
|
||||
PYTHONPATH="`dirname $0`/../../Source/Python" \
|
||||
python "`dirname $0`/../../Source/Python"/`basename $0`/`basename $0`.py $*
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user