Ventoy/INSTALL/Ventoy2Disk.sh

60 lines
1.2 KiB
Bash
Raw Normal View History

2020-04-04 12:07:50 -04:00
#!/bin/sh
2020-09-02 07:29:19 -04:00
if [ -f ./ventoy/version ]; then
curver=$(cat ./ventoy/version)
fi
2020-04-04 12:07:50 -04:00
echo ''
2020-09-02 07:29:19 -04:00
echo '**********************************************'
echo " Ventoy: $curver"
echo " longpanda admin@ventoy.net"
echo " https://www.ventoy.net"
echo '**********************************************'
2020-04-04 12:07:50 -04:00
echo ''
OLDDIR=$PWD
2020-04-04 12:07:50 -04:00
if ! [ -f ./tool/xzcat ]; then
if [ -f ${0%Ventoy2Disk.sh}/tool/xzcat ]; then
cd ${0%Ventoy2Disk.sh}
2020-05-04 11:46:51 -04:00
fi
2020-05-16 02:17:36 -04:00
fi
2020-04-30 10:40:40 -04: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 10:40:40 -04:00
else
echo "Please run under the correct directory!"
2020-04-04 12:07:50 -04:00
fi
2020-05-24 08:24:34 -04:00
exit 1
fi
echo "############# Ventoy2Disk $* ################" >> ./log.txt
2020-04-24 09:58:00 -04:00
#decompress tool
if ! [ -f ./tool/ash ]; then
cd tool
chmod +x ./xzcat
for file in $(ls *.xz); do
./xzcat $file > ${file%.xz}
chmod +x ${file%.xz}
2020-05-23 09:19:26 -04:00
done
cd ../
2020-04-04 12:07:50 -04:00
if ! [ -f ./tool/ash ]; then
echo 'Failed to decompress tools ...'
2020-07-31 11:08:17 -04:00
if [ -n "$OLDDIR" ]; then
cd $OLDDIR
fi
2020-04-04 12:07:50 -04:00
exit 1
fi
fi
./tool/ash ./tool/VentoyWorker.sh $*
2020-07-31 11:08:17 -04:00
if [ -n "$OLDDIR" ]; then
cd $OLDDIR
fi