Unverified Commit ac0f68f9 authored by longpanda's avatar longpanda Committed by GitHub
Browse files

Update ventoy_lib.sh

parent 50aa5d38
...@@ -255,12 +255,21 @@ EOF ...@@ -255,12 +255,21 @@ EOF
partprobe >/dev/null 2>&1 partprobe >/dev/null 2>&1
sleep 3 sleep 3
echo 'mkfs on disk partitions ...' echo 'mkfs on disk partitions ...'
while ! [ -e $PART2 ]; do for i in 1 2 3 4 5 6 7; do
echo "wait $PART2 ..." if [ -b $PART2 ]; then
sleep 1 break
else
echo "wait $PART2 ..."
sleep 1
fi
done done
if ! [ -b $PART2 ]; then
MajorMinor=$(sed "s/:/ /" /sys/class/block/${PART2#/dev/}/dev)
echo "mknod -m 0660 $PART2 b $MajorMinor ..."
mknod -m 0660 $PART2 b $MajorMinor
fi
echo "create efi fat fs ..." echo "create efi fat fs ..."
for i in 0 1 2 3 4 5 6 7 8 9; do for i in 0 1 2 3 4 5 6 7 8 9; do
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment