Ventoy/INSTALL/Ventoy2Disk.sh

80 lines
1.7 KiB
Bash
Raw Normal View History

2020-04-05 00:07:50 +08:00
#!/bin/sh
2021-01-06 07:50:23 +08:00
OLDDIR=$(pwd)
2020-10-16 20:26:24 +08:00
if ! [ -f ./tool/ventoy_lib.sh ]; then
if [ -f ${0%Ventoy2Disk.sh}/tool/ventoy_lib.sh ]; then
cd ${0%Ventoy2Disk.sh}
fi
fi
2020-09-02 19:29:19 +08:00
if [ -f ./ventoy/version ]; then
curver=$(cat ./ventoy/version)
fi
2020-04-05 00:07:50 +08:00
2022-12-21 19:59:16 +08:00
if uname -m | grep -E -q 'aarch64|arm64'; then
2020-12-12 07:56:52 +08:00
export TOOLDIR=aarch64
2022-12-21 19:59:16 +08:00
elif uname -m | grep -E -q 'x86_64|amd64'; then
2020-12-12 07:56:52 +08:00
export TOOLDIR=x86_64
2022-12-21 19:59:16 +08:00
elif uname -m | grep -E -q 'mips64'; then
2021-03-06 19:53:50 +08:00
export TOOLDIR=mips64el
2020-12-12 07:56:52 +08:00
else
export TOOLDIR=i386
fi
2021-08-17 05:01:42 +03:00
export PATH="./tool/$TOOLDIR:$PATH"
2020-12-12 07:56:52 +08:00
2020-04-05 00:07:50 +08:00
echo ''
2020-09-02 19:29:19 +08:00
echo '**********************************************'
2020-12-12 07:56:52 +08:00
echo " Ventoy: $curver $TOOLDIR"
2020-09-02 19:29:19 +08:00
echo " longpanda admin@ventoy.net"
echo " https://www.ventoy.net"
echo '**********************************************'
2020-04-05 00:07:50 +08:00
echo ''
2020-05-16 14:17:36 +08:00
2020-04-30 22:40:40 +08:00
if ! [ -f ./boot/boot.img ]; then
if [ -d ./grub ]; then
echo "Don't run Ventoy2Disk.sh here, please download the released install package, and run the script in it."
2020-04-30 22:40:40 +08:00
else
echo "Please run under the correct directory!"
2020-04-05 00:07:50 +08:00
fi
2020-05-24 20:24:34 +08:00
exit 1
fi
2020-12-12 07:56:52 +08:00
echo "############# Ventoy2Disk $* [$TOOLDIR] ################" >> ./log.txt
2020-10-16 20:26:24 +08:00
date >> ./log.txt
2020-04-24 21:58:00 +08:00
#decompress tool
echo "decompress tools" >> ./log.txt
cd ./tool/$TOOLDIR
ls *.xz > /dev/null 2>&1
if [ $? -eq 0 ]; then
2020-12-12 07:56:52 +08:00
[ -f ./xzcat ] && chmod +x ./xzcat
for file in $(ls *.xz); do
echo "decompress $file" >> ./log.txt
2020-10-16 20:26:24 +08:00
xzcat $file > ${file%.xz}
2021-01-06 07:50:23 +08:00
[ -f ./${file%.xz} ] && chmod +x ./${file%.xz}
2020-12-12 07:56:52 +08:00
[ -f ./$file ] && rm -f ./$file
2020-05-23 21:19:26 +08:00
done
2020-04-05 00:07:50 +08:00
fi
cd ../../
chmod +x -R ./tool/$TOOLDIR
2020-10-16 20:26:24 +08:00
if [ -f /bin/bash ]; then
2020-12-12 07:56:52 +08:00
/bin/bash ./tool/VentoyWorker.sh $*
2020-10-16 20:26:24 +08:00
else
2020-12-12 07:56:52 +08:00
ash ./tool/VentoyWorker.sh $*
2020-10-16 20:26:24 +08:00
fi
2020-07-31 23:08:17 +08:00
if [ -n "$OLDDIR" ]; then
2021-01-06 07:50:23 +08:00
CURDIR=$(pwd)
if [ "$CURDIR" != "$OLDDIR" ]; then
cd "$OLDDIR"
fi
2020-07-31 23:08:17 +08:00
fi