tools-uclibc: remove useless debugging code
This commit is contained in:
parent
2c293090c3
commit
58d7f6a72b
5 changed files with 32 additions and 189 deletions
|
@ -1,29 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# This just fixes up the symbolic links
|
|
||||||
# to the latest stage{1,2,3} tarballs
|
|
||||||
|
|
||||||
mydate=$1
|
|
||||||
mypwd=/var/tmp/catalyst/builds
|
|
||||||
|
|
||||||
find ${mypwd} -type f -size 0 -exec rm {} +
|
|
||||||
find -L ${mypwd} -type l -exec rm {} +
|
|
||||||
|
|
||||||
for arch in amd64 i686; do
|
|
||||||
for flavor in hardened vanilla; do
|
|
||||||
for s in 1 2 3; do
|
|
||||||
file=stage${s}-${arch}-uclibc-${flavor}-${mydate}.tar.bz2
|
|
||||||
link=stage${s}-${arch}-uclibc-${flavor}.tar.bz2
|
|
||||||
cd "${mypwd}/${flavor}/${arch}"
|
|
||||||
if [[ -f ${file} ]]; then
|
|
||||||
ln -sf ${file} ${link}
|
|
||||||
else
|
|
||||||
echo "!!! ${file} doesn't exist!"
|
|
||||||
echo "!!! make sure \${mydate} is right!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
done
|
|
||||||
done
|
|
||||||
|
|
||||||
tree ${mypwd}
|
|
|
@ -1,12 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#
|
|
||||||
# Usage: ./run-armv7a.sh <mode>
|
|
||||||
# where
|
|
||||||
# <mode> = "", it will actually do the runs
|
|
||||||
# <mode> = "test", it will just pretend
|
|
||||||
#
|
|
||||||
|
|
||||||
source /etc/catalyst/catalyst.conf
|
source /etc/catalyst/catalyst.conf
|
||||||
|
|
||||||
mydate=`date +%Y%m%d`
|
mydate=`date +%Y%m%d`
|
||||||
|
@ -54,7 +47,6 @@ EOF
|
||||||
do_stages() {
|
do_stages() {
|
||||||
local arch=$1
|
local arch=$1
|
||||||
local flavor=$2
|
local flavor=$2
|
||||||
local pretend=$3
|
|
||||||
|
|
||||||
for s in 1 2 3; do
|
for s in 1 2 3; do
|
||||||
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
||||||
|
@ -69,20 +61,11 @@ do_stages() {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
banner ${s} ${arch} ${flavor}
|
||||||
banner ${s} ${arch} ${flavor}
|
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
||||||
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
| tee -a zzz.log \
|
||||||
| tee -a zzz.log \
|
> stage${s}-${arch}-uclibc-${flavor}.log \
|
||||||
> stage${s}-${arch}-uclibc-${flavor}.log \
|
2> stage${s}-${arch}-uclibc-${flavor}.err
|
||||||
2> stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
else
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.log
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
touch "${tgpath}/${target}"
|
|
||||||
echo "PRETEND: catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ "
|
|
||||||
echo "PRETEND: > stage${s}-${arch}-uclibc-${flavor}.log \ "
|
|
||||||
echo "PRETEND: 2> stage${s}-${arch}-uclibc-${flavor}.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f "${tgpath}/${target}" ]]; then
|
if [[ -f "${tgpath}/${target}" ]]; then
|
||||||
rm -f "${tgpath}/${tglink}"
|
rm -f "${tgpath}/${tglink}"
|
||||||
|
@ -107,17 +90,9 @@ do_stages() {
|
||||||
#
|
#
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
local pretend=$1
|
|
||||||
|
|
||||||
>zzz.log
|
>zzz.log
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
||||||
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
|
||||||
else
|
|
||||||
>snapshot.log
|
|
||||||
>snapshot.err
|
|
||||||
echo "PRETEND: catalyst -s current > snapshot.log 2> snapshot.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for arch in armv7a; do
|
for arch in armv7a; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
|
@ -127,21 +102,14 @@ main() {
|
||||||
|
|
||||||
for arch in armv7a; do
|
for arch in armv7a; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
do_stages ${arch} ${flavor} ${pretend}
|
do_stages ${arch} ${flavor}
|
||||||
ret=$?
|
ret=$?
|
||||||
if [[ $? == 1 ]]; then
|
if [[ $? == 1 ]]; then
|
||||||
echo "FAILURE at ${arch} ${flavor} ${pretend} " | tee zzz.log
|
echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ "x${pretend}" == "xtest" ]]; then
|
|
||||||
tree /var/tmp/catalyst/builds
|
|
||||||
echo
|
|
||||||
echo "!!! Run fixup.sh to clean up!"
|
|
||||||
echo
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main $1 &
|
main $1 &
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#
|
|
||||||
# Usage: ./run-mips32r2.sh <mode>
|
|
||||||
# where
|
|
||||||
# <mode> = "", it will actually do the runs
|
|
||||||
# <mode> = "test", it will just pretend
|
|
||||||
#
|
|
||||||
|
|
||||||
source /etc/catalyst/catalyst.conf
|
source /etc/catalyst/catalyst.conf
|
||||||
|
|
||||||
mydate=`date +%Y%m%d`
|
mydate=`date +%Y%m%d`
|
||||||
|
@ -53,7 +46,6 @@ EOF
|
||||||
do_stages() {
|
do_stages() {
|
||||||
local arch=$1
|
local arch=$1
|
||||||
local flavor=$2
|
local flavor=$2
|
||||||
local pretend=$3
|
|
||||||
|
|
||||||
for s in 1 2 3; do
|
for s in 1 2 3; do
|
||||||
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
||||||
|
@ -68,20 +60,11 @@ do_stages() {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
banner ${s} ${arch} ${flavor}
|
||||||
banner ${s} ${arch} ${flavor}
|
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
||||||
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
| tee -a zzz.log \
|
||||||
| tee -a zzz.log \
|
> stage${s}-${arch}-uclibc-${flavor}.log \
|
||||||
> stage${s}-${arch}-uclibc-${flavor}.log \
|
2> stage${s}-${arch}-uclibc-${flavor}.err
|
||||||
2> stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
else
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.log
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
touch "${tgpath}/${target}"
|
|
||||||
echo "PRETEND: catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ "
|
|
||||||
echo "PRETEND: > stage${s}-${arch}-uclibc-${flavor}.log \ "
|
|
||||||
echo "PRETEND: 2> stage${s}-${arch}-uclibc-${flavor}.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f "${tgpath}/${target}" ]]; then
|
if [[ -f "${tgpath}/${target}" ]]; then
|
||||||
rm -f "${tgpath}/${tglink}"
|
rm -f "${tgpath}/${tglink}"
|
||||||
|
@ -106,17 +89,9 @@ do_stages() {
|
||||||
#
|
#
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
local pretend=$1
|
|
||||||
|
|
||||||
>zzz.log
|
>zzz.log
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
||||||
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
|
||||||
else
|
|
||||||
>snapshot.log
|
|
||||||
>snapshot.err
|
|
||||||
echo "PRETEND: catalyst -s current > snapshot.log 2> snapshot.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for arch in mips32r2; do
|
for arch in mips32r2; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
|
@ -126,21 +101,14 @@ main() {
|
||||||
|
|
||||||
for arch in mips32r2; do
|
for arch in mips32r2; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
do_stages ${arch} ${flavor} ${pretend}
|
do_stages ${arch} ${flavor}
|
||||||
ret=$?
|
ret=$?
|
||||||
if [[ $? == 1 ]]; then
|
if [[ $? == 1 ]]; then
|
||||||
echo "FAILURE at ${arch} ${flavor} ${pretend} " | tee zzz.log
|
echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ "x${pretend}" == "xtest" ]]; then
|
|
||||||
tree /var/tmp/catalyst/builds
|
|
||||||
echo
|
|
||||||
echo "!!! Run fixup.sh to clean up!"
|
|
||||||
echo
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main $1 &
|
main $1 &
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#
|
|
||||||
# Usage: ./run-mipsel3.sh <mode>
|
|
||||||
# where
|
|
||||||
# <mode> = "", it will actually do the runs
|
|
||||||
# <mode> = "test", it will just pretend
|
|
||||||
#
|
|
||||||
|
|
||||||
source /etc/catalyst/catalyst.conf
|
source /etc/catalyst/catalyst.conf
|
||||||
|
|
||||||
mydate=`date +%Y%m%d`
|
mydate=`date +%Y%m%d`
|
||||||
|
@ -53,7 +46,6 @@ EOF
|
||||||
do_stages() {
|
do_stages() {
|
||||||
local arch=$1
|
local arch=$1
|
||||||
local flavor=$2
|
local flavor=$2
|
||||||
local pretend=$3
|
|
||||||
|
|
||||||
for s in 1 2 3; do
|
for s in 1 2 3; do
|
||||||
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
||||||
|
@ -68,20 +60,11 @@ do_stages() {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
banner ${s} ${arch} ${flavor}
|
||||||
banner ${s} ${arch} ${flavor}
|
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
||||||
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
| tee -a zzz.log \
|
||||||
| tee -a zzz.log \
|
> stage${s}-${arch}-uclibc-${flavor}.log \
|
||||||
> stage${s}-${arch}-uclibc-${flavor}.log \
|
2> stage${s}-${arch}-uclibc-${flavor}.err
|
||||||
2> stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
else
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.log
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
touch "${tgpath}/${target}"
|
|
||||||
echo "PRETEND: catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ "
|
|
||||||
echo "PRETEND: > stage${s}-${arch}-uclibc-${flavor}.log \ "
|
|
||||||
echo "PRETEND: 2> stage${s}-${arch}-uclibc-${flavor}.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f "${tgpath}/${target}" ]]; then
|
if [[ -f "${tgpath}/${target}" ]]; then
|
||||||
rm -f "${tgpath}/${tglink}"
|
rm -f "${tgpath}/${tglink}"
|
||||||
|
@ -106,17 +89,9 @@ do_stages() {
|
||||||
#
|
#
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
local pretend=$1
|
|
||||||
|
|
||||||
>zzz.log
|
>zzz.log
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
||||||
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
|
||||||
else
|
|
||||||
>snapshot.log
|
|
||||||
>snapshot.err
|
|
||||||
echo "PRETEND: catalyst -s current > snapshot.log 2> snapshot.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for arch in mipsel3; do
|
for arch in mipsel3; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
|
@ -126,21 +101,14 @@ main() {
|
||||||
|
|
||||||
for arch in mipsel3; do
|
for arch in mipsel3; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
do_stages ${arch} ${flavor} ${pretend}
|
do_stages ${arch} ${flavor}
|
||||||
ret=$?
|
ret=$?
|
||||||
if [[ $? == 1 ]]; then
|
if [[ $? == 1 ]]; then
|
||||||
echo "FAILURE at ${arch} ${flavor} ${pretend} " | tee zzz.log
|
echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ "x${pretend}" == "xtest" ]]; then
|
|
||||||
tree /var/tmp/catalyst/builds
|
|
||||||
echo
|
|
||||||
echo "!!! Run fixup.sh to clean up!"
|
|
||||||
echo
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main $1 &
|
main $1 &
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#
|
|
||||||
# Usage: ./run.sh <mode>
|
|
||||||
# where
|
|
||||||
# <mode> = "", it will actually do the runs
|
|
||||||
# <mode> = "test", it will just pretend
|
|
||||||
#
|
|
||||||
|
|
||||||
source /etc/catalyst/catalyst.conf
|
source /etc/catalyst/catalyst.conf
|
||||||
|
|
||||||
mydate=`date +%Y%m%d`
|
mydate=`date +%Y%m%d`
|
||||||
|
@ -64,7 +57,6 @@ EOF
|
||||||
do_stages() {
|
do_stages() {
|
||||||
local arch=$1
|
local arch=$1
|
||||||
local flavor=$2
|
local flavor=$2
|
||||||
local pretend=$3
|
|
||||||
|
|
||||||
for s in 1 2 3; do
|
for s in 1 2 3; do
|
||||||
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
local tgpath="${storedir}/builds/${flavor}/${arch}"
|
||||||
|
@ -79,20 +71,11 @@ do_stages() {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
banner ${s} ${arch} ${flavor}
|
||||||
banner ${s} ${arch} ${flavor}
|
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
||||||
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
|
| tee -a zzz.log \
|
||||||
| tee -a zzz.log \
|
> stage${s}-${arch}-uclibc-${flavor}.log \
|
||||||
> stage${s}-${arch}-uclibc-${flavor}.log \
|
2> stage${s}-${arch}-uclibc-${flavor}.err
|
||||||
2> stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
else
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.log
|
|
||||||
touch stage${s}-${arch}-uclibc-${flavor}.err
|
|
||||||
touch "${tgpath}/${target}"
|
|
||||||
echo "PRETEND: catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ "
|
|
||||||
echo "PRETEND: > stage${s}-${arch}-uclibc-${flavor}.log \ "
|
|
||||||
echo "PRETEND: 2> stage${s}-${arch}-uclibc-${flavor}.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f "${tgpath}/${target}" ]]; then
|
if [[ -f "${tgpath}/${target}" ]]; then
|
||||||
rm -f "${tgpath}/${tglink}"
|
rm -f "${tgpath}/${tglink}"
|
||||||
|
@ -117,19 +100,11 @@ do_stages() {
|
||||||
#
|
#
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
local pretend=$1
|
|
||||||
|
|
||||||
>zzz.log
|
>zzz.log
|
||||||
|
|
||||||
undo_grsec
|
undo_grsec
|
||||||
|
|
||||||
if [[ "x${pretend}" != "xtest" ]]; then
|
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
||||||
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
|
||||||
else
|
|
||||||
>snapshot.log
|
|
||||||
>snapshot.err
|
|
||||||
echo "PRETEND: catalyst -s current > snapshot.log 2> snapshot.err"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for arch in amd64 i686; do
|
for arch in amd64 i686; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
|
@ -139,21 +114,14 @@ main() {
|
||||||
|
|
||||||
for arch in amd64 i686; do
|
for arch in amd64 i686; do
|
||||||
for flavor in hardened vanilla; do
|
for flavor in hardened vanilla; do
|
||||||
do_stages ${arch} ${flavor} ${pretend}
|
do_stages ${arch} ${flavor}
|
||||||
ret=$?
|
ret=$?
|
||||||
if [[ $? == 1 ]]; then
|
if [[ $? == 1 ]]; then
|
||||||
echo "FAILURE at ${arch} ${flavor} ${pretend} " | tee zzz.log
|
echo "FAILURE at ${arch} ${flavor}" | tee zzz.log
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ "x${pretend}" == "xtest" ]]; then
|
|
||||||
tree /var/tmp/catalyst/builds
|
|
||||||
echo
|
|
||||||
echo "!!! Run fixup.sh to clean up!"
|
|
||||||
echo
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main $1 &
|
main $1 &
|
||||||
|
|
Loading…
Add table
Reference in a new issue