mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-11 14:14:23 +00:00
252 lines
6.4 KiB
Plaintext
252 lines
6.4 KiB
Plaintext
# Sanitize.in for devo.
|
|
# $Id$
|
|
#
|
|
|
|
# Each directory to survive it's way into a release will need a file
|
|
# like this one called "./.Sanitize". All keyword lines must exist,
|
|
# and must exist in the order specified by this file. Each directory
|
|
# in the tree will be processed, top down, in the following order.
|
|
|
|
# Hash started lines like this one are comments and will be deleted
|
|
# before anything else is done. Blank lines will also be squashed
|
|
# out.
|
|
|
|
# The lines between the "Do-first:" line and the "Things-to-keep:"
|
|
# line are executed as a /bin/sh shell script before anything else is
|
|
# done in this
|
|
|
|
Do-first:
|
|
|
|
r5900_files="r5900.igen"
|
|
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
|
|
keep_these_too="${r5900_files} ${keep_these_too}"
|
|
else
|
|
lose_these_too="${r5900_files} ${lose_these_too}"
|
|
fi
|
|
|
|
sky_files="ChangeLog.sky sky-device.c sky-device.h sky-dma.c sky-dma.h sky-bits.h"
|
|
sky_files="$sky_files sky-engine.c sky-gpuif.c sky-gpuif.h"
|
|
sky_files="$sky_files sky-hardware.c sky-hardware.h"
|
|
sky_files="$sky_files sky-libvpe.c sky-libvpe.h sky-pke.c sky-pke.h"
|
|
sky_files="$sky_files sky-vpe.h sky-vu.h sky-vu0.c sky-vu0.h sky-vu1.c sky-vu1.h"
|
|
if ( echo $* | grep keep\-sky > /dev/null ) ; then
|
|
keep_these_too="${sky_files} ${keep_these_too}"
|
|
else
|
|
lose_these_too="${sky_files} ${lose_these_too}"
|
|
fi
|
|
|
|
vr5400_files="vr5400.igen mdmx.igen"
|
|
if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
|
|
keep_these_too="${vr5400_files} ${keep_these_too}"
|
|
else
|
|
lose_these_too="${vr5400_files} ${lose_these_too}"
|
|
fi
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
|
# "Files-to-sed:" line will be kept. All other files will be removed.
|
|
# Directories listed in this section will have their own Sanitize
|
|
# called. Directories not listed will be removed in their entirety
|
|
# with rm -rf.
|
|
|
|
Things-to-keep:
|
|
|
|
ChangeLog
|
|
Makefile.in
|
|
README.Cygnus
|
|
config.in
|
|
configure
|
|
configure.in
|
|
gencode.c
|
|
interp.c
|
|
sim-main.h
|
|
tconfig.in
|
|
mips.igen
|
|
m16.igen
|
|
m16.dc
|
|
m16run.c
|
|
mips.dc
|
|
|
|
Things-to-lose:
|
|
|
|
|
|
Do-last:
|
|
|
|
r5900_files="ChangeLog configure configure.in sim-main.h interp.c gencode.c mips.igen mips.dc m16.igen r5900.igen"
|
|
|
|
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
|
|
for i in $r5900_files ; do
|
|
if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping r5900 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"r5900\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
sky_files="ChangeLog Makefile.in configure configure.in"
|
|
|
|
if ( echo $* | grep keep\-sky > /dev/null ) ; then
|
|
for i in $sky_files ; do
|
|
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping sky stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"sky\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
tx19_files="ChangeLog configure configure.in sim-main.h interp.c gencode.c mips.igen mips.dc m16.igen"
|
|
|
|
if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
|
|
for i in $tx19_files ; do
|
|
if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping tx19 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"tx19\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
tx49_files="ChangeLog configure.in configure gencode.c"
|
|
|
|
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
|
|
for i in $tx49_files ; do
|
|
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping tx49 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"tx49\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
vr5400_files="ChangeLog configure configure.in sim-main.h interp.c gencode.c mips.igen mips.dc m16.igen vr5400.igen mdmx.igen"
|
|
|
|
if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
|
|
for i in $vr5400_files ; do
|
|
if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping vr5400 stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"vr5400\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-vr5400/,/end-\sanitize\-vr5400/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
|
|
never_files="ChangeLog configure configure.in interp.c gencode.c mips.igen mips.dc"
|
|
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize-cygnus-never $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"cygnus-never\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-cygnus\-never/,/end-\sanitize\-cygnus\-never/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
|
|
|
|
for i in * ; do
|
|
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
|
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
|
fi
|
|
done
|
|
|
|
# End of file.
|