scripts/{cp-musl.sh,cp-uclibc.sh}: move from nightheron:/home/blueness
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
parent
e02f16792b
commit
c6a9395dbb
2 changed files with 40 additions and 0 deletions
19
scripts/cp-uclibc.sh
Executable file
19
scripts/cp-uclibc.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
|
||||
CATDIR="/release/buildroot/alt-dev/builds/uclibc"
|
||||
SERVER="amd64@dipper:~/uclibc"
|
||||
LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l)
|
||||
COMMAND="rsync"
|
||||
for f in $LIST; do
|
||||
$COMMAND $(realpath $f) $SERVER
|
||||
$COMMAND $(realpath $f).CONTENTS.gz $SERVER
|
||||
$COMMAND $(realpath $f).DIGESTS $SERVER
|
||||
done
|
||||
|
||||
SERVER="x86@dipper:~/uclibc"
|
||||
LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l)
|
||||
for f in $LIST; do
|
||||
$COMMAND $(realpath $f) $SERVER
|
||||
$COMMAND $(realpath $f).CONTENTS.gz $SERVER
|
||||
$COMMAND $(realpath $f).DIGESTS $SERVER
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue