blob: 91f2500d134c40e1ebbc89c893fea7b86e3ff6d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
LINUX_VERSION=`uname -r | grep 2.4`
echo "$LINUX_VERSION"
if [ "$LINUX_VERSION" = "" ]; then
./lzma-26 $1 $2 $3
elif [ "$LINUX_VERSION" != "" ]; then
./lzma-24 $1 $2 $3
else
echo "can not find LZMA"
fi
|