mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
78acc472d9
Now that the other architecture-specific lib directories have been moved out of the top-level directory there's not much reason to have the '_generic' suffix on the common lib directory. Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
36 lines
527 B
Bash
36 lines
527 B
Bash
#!/bin/sh
|
|
|
|
usage() {
|
|
echo "Usage: $0 lzmaVERSION.tar.bz2" >&2
|
|
echo >&2
|
|
exit 1
|
|
}
|
|
|
|
if [ "$1" = "" ] ; then
|
|
usage
|
|
fi
|
|
|
|
if [ ! -f $1 ] ; then
|
|
echo "$1 doesn't exist!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
BASENAME=`basename $1 .tar.bz2`
|
|
TMPDIR=/tmp/tmp_lib_$BASENAME
|
|
FILES="C/LzmaDec.h
|
|
C/Types.h
|
|
C/LzmaDec.c
|
|
history.txt
|
|
lzma.txt"
|
|
|
|
mkdir -p $TMPDIR
|
|
echo "Untar $1 -> $TMPDIR"
|
|
tar -jxf $1 -C $TMPDIR
|
|
|
|
for i in $FILES; do
|
|
echo Copying $TMPDIR/$i \-\> `basename $i`
|
|
cp $TMPDIR/$i .
|
|
chmod -x `basename $i`
|
|
done
|
|
|
|
echo "done!"
|