parent
4bfaea1a83
commit
4cfc826b5c
@ -0,0 +1,21 @@
|
||||
ARCH=$(dpkg --print-architecture)
|
||||
echo $ARCH
|
||||
if [ $ARCH = "amd64" ]
|
||||
then
|
||||
ARCH=x86_64-linux-gnu
|
||||
elif [ $ARCH = "i386" ]
|
||||
then
|
||||
ARCH=i386-linux-gnu
|
||||
elif [ $ARCH = "arm64" ]
|
||||
then
|
||||
ARCH=aarch64-linux-gnu
|
||||
elif [ $ARCH = "armhf" ]
|
||||
then
|
||||
ARCH=arm-linux-gnueabihf
|
||||
elif [ $ARCH = "armel" ]
|
||||
then
|
||||
ARCH=arm-linux-gnueabi
|
||||
else
|
||||
echo architecture not found!!!!!!!!!
|
||||
echo exiting
|
||||
fi
|
||||
@ -1 +0,0 @@
|
||||
i386-linux-gnu
|
||||
Loading…
Reference in new issue