Ventoy/INSTALL/Ventoy2Disk.sh

64 lines
1.3 KiB
Bash
Raw Normal View History

2020-04-04 12:07:50 -04:00
#!/bin/sh
2020-10-16 08:26:24 -04: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 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 ''
2020-10-16 08:26:24 -04:00
OLDDIR=$(pwd)
PATH=./tool:$PATH
2020-05-16 02:17:36 -04:00
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-10-16 08:26:24 -04:00
date >> ./log.txt
2020-04-24 09:58:00 -04:00
#decompress tool
2020-10-16 08:26:24 -04:00
if [ -f ./tool/VentoyWorker.sh ]; then
echo "no need to decompress tools" >> ./log.txt
else
cd tool
2020-10-16 08:26:24 -04:00
if [ -f ./xzcat ]; then
chmod +x ./xzcat
fi
for file in $(ls *.xz); do
2020-10-16 08:26:24 -04:00
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
fi
2020-10-16 08:26:24 -04:00
if [ -f /bin/bash ]; then
bash ./tool/VentoyWorker.sh $*
else
./tool/ash ./tool/VentoyWorker.sh $*
fi
2020-07-31 11:08:17 -04:00
if [ -n "$OLDDIR" ]; then
cd $OLDDIR
fi