OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [djunpack.bat] - Diff between revs 105 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 105 Rev 1765
@echo off
@echo off
Rem
Rem
Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
Rem format, or else stock DOS/Windows shells will refuse to run it.
Rem format, or else stock DOS/Windows shells will refuse to run it.
Rem
Rem
Rem This batch file unpacks the GDB distribution while simultaneously
Rem This batch file unpacks the GDB distribution while simultaneously
Rem renaming some of the files whose names are invalid on DOS or conflict
Rem renaming some of the files whose names are invalid on DOS or conflict
Rem with other file names after truncation to DOS 8+3 namespace.
Rem with other file names after truncation to DOS 8+3 namespace.
Rem
Rem
Rem Invoke like this:
Rem Invoke like this:
Rem
Rem
Rem     djunpack gdb-XYZ.tar
Rem     djunpack gdb-XYZ.tar
Rem
Rem
Rem where XYZ is the version number.  If the argument includes leading
Rem where XYZ is the version number.  If the argument includes leading
Rem directories, it MUST use backslashes, not forward slashes.
Rem directories, it MUST use backslashes, not forward slashes.
Rem
Rem
Rem The following 2 lines need to be changed with each new GDB release, to
Rem The following 2 lines need to be changed with each new GDB release, to
Rem be identical to the name of the top-level directory where the GDB
Rem be identical to the name of the top-level directory where the GDB
Rem distribution unpacks itself.
Rem distribution unpacks itself.
set GDBVER=gdb-5.0
set GDBVER=gdb-5.0
if "%GDBVER%"=="gdb-5.0" GoTo EnvOk
if "%GDBVER%"=="gdb-5.0" GoTo EnvOk
Rem If their environment space is too small, re-exec with a larger one
Rem If their environment space is too small, re-exec with a larger one
command.com /e:4096 /c %0 %1
command.com /e:4096 /c %0 %1
GoTo End
GoTo End
:EnvOk
:EnvOk
if not exist %1 GoTo NoArchive
if not exist %1 GoTo NoArchive
djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp
djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp
Rem The following uses a feature of COPY whereby it does not copy
Rem The following uses a feature of COPY whereby it does not copy
Rem empty files.  We need that because the previous line will create
Rem empty files.  We need that because the previous line will create
Rem an empty fnchange.tmp even if the command failed for some reason.
Rem an empty fnchange.tmp even if the command failed for some reason.
copy fnchange.tmp junk.tmp > nul
copy fnchange.tmp junk.tmp > nul
if not exist junk.tmp GoTo NoDjTar
if not exist junk.tmp GoTo NoDjTar
del junk.tmp
del junk.tmp
sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst
sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst
Rem See the comment above about the reason for using COPY.
Rem See the comment above about the reason for using COPY.
copy fnchange.lst junk.tmp > nul
copy fnchange.lst junk.tmp > nul
if not exist junk.tmp GoTo NoSed
if not exist junk.tmp GoTo NoSed
del junk.tmp
del junk.tmp
djtar -x -n fnchange.lst %1
djtar -x -n fnchange.lst %1
GoTo End
GoTo End
:NoSed
:NoSed
echo FAIL: Sed is not available.
echo FAIL: Sed is not available.
GoTo End
GoTo End
:NoDjTar
:NoDjTar
echo FAIL: DJTAR is not available or no fnchange.lst file in %1.
echo FAIL: DJTAR is not available or no fnchange.lst file in %1.
GoTo End
GoTo End
:NoArchive
:NoArchive
echo FAIL: the file %1 does not seem to exist.
echo FAIL: the file %1 does not seem to exist.
echo Remember that %1 cannot use forward slashes, only backslashes.
echo Remember that %1 cannot use forward slashes, only backslashes.
GoTo End
GoTo End
:End
:End
set GDBVER=
set GDBVER=
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.