Ventoy2Disk.sh 9.36 KB
Newer Older
longpanda's avatar
longpanda committed
1
2
#!/bin/sh

longpanda's avatar
longpanda committed
3
4
5
6
7
8
OLDDIR=$PWD

if ! [ -f ./tool/ventoy_lib.sh ]; then
    cd ${0%Ventoy2Disk.sh}
fi

longpanda's avatar
longpanda committed
9
10
11
. ./tool/ventoy_lib.sh

print_usage() {
longpanda's avatar
longpanda committed
12
13
    echo 'Usage:  Ventoy2Disk.sh CMD [ OPTION ] /dev/sdX'
    echo '  CMD:'
longpanda's avatar
longpanda committed
14
15
16
17
    echo '   -i  install ventoy to sdX (fail if disk already installed with ventoy)'
    echo '   -u  update ventoy in sdX'
    echo '   -I  force install ventoy to sdX (no matter installed or not)'
    echo ''
longpanda's avatar
longpanda committed
18
19
20
21
    echo '  OPTION: (optional)'
    echo '   -s  enable secure boot support (default is disabled)'
    echo ''
    
longpanda's avatar
longpanda committed
22
23
24
25
26
27
28
29
30
}

echo ''
echo '***********************************************************'
echo '*                Ventoy2Disk Script                       *'
echo '*             longpanda  admin@ventoy.net                 *'
echo '***********************************************************'
echo ''

longpanda's avatar
longpanda committed
31
vtdebug "############# Ventoy2Disk $0 ################"
longpanda's avatar
longpanda committed
32

longpanda's avatar
longpanda committed
33
34
35
36
37
38
39
40
41
42
43
44
while [ -n "$1" ]; do
    if [ "$1" = "-i" ]; then
        MODE="install"
    elif [ "$1" = "-I" ]; then
        MODE="install"
        FORCE="Y"
    elif [ "$1" = "-u" ]; then
        MODE="update"
    elif [ "$1" = "-s" ]; then
        SECUREBOOT="YES"
    else
        if ! [ -b "$1" ]; then
longpanda's avatar
longpanda committed
45
            vterr "$1 is NOT a valid device"
longpanda's avatar
longpanda committed
46
47
48
49
50
51
52
53
54
            print_usage
            cd $OLDDIR
            exit 1
        fi
        DISK=$1
    fi
    
    shift
done
longpanda's avatar
longpanda committed
55

longpanda's avatar
longpanda committed
56
if [ -z "$MODE" ]; then
longpanda's avatar
longpanda committed
57
    print_usage
longpanda's avatar
longpanda committed
58
    cd $OLDDIR
longpanda's avatar
longpanda committed
59
60
61
    exit 1
fi

longpanda's avatar
longpanda committed
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
if ! [ -b "$DISK" ]; then
    vterr "Disk $DISK does not exist"
    cd $OLDDIR
    exit 1
fi

if [ -e /sys/class/block/${DISK#/dev/}/start ]; then
    vterr "$DISK is a partition, please use the whole disk"
    cd $OLDDIR
    exit 1
fi

if dd if="$DISK" of=/dev/null bs=1 count=1 >/dev/null 2>&1; then
    vtdebug "root permission check ok ..."
else
    vterr "Failed to access $DISK, maybe root privilege is needed!"
    echo ''
    cd $OLDDIR
    exit 1
longpanda's avatar
longpanda committed
81
82
83
84
fi

vtdebug "MODE=$MODE FORCE=$FORCE"

longpanda's avatar
longpanda committed
85
86
87
88
89
90
91
92
93
if ! [ -f ./boot/boot.img ]; then
    if [ -d ./grub ]; then
        vterr "Don't run me here, please download the released install package, and run there."
    else
        vterr "Please run under the right directory!" 
    fi
    exit 1
fi

longpanda's avatar
longpanda committed
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#decompress tool
cd tool
chmod +x ./xzcat
for file in $(ls); do
    if [ "$file" != "xzcat" ]; then
        if [ "$file" != "ventoy_lib.sh" ]; then
            ./xzcat $file > ${file%.xz}
            chmod +x ${file%.xz}
        fi
    fi
done
cd ../

if ! check_tool_work_ok; then
    vterr "Some tools can not run in current system. Please check log.txt for detail."
longpanda's avatar
longpanda committed
109
    cd $OLDDIR
longpanda's avatar
longpanda committed
110
111
112
    exit 1
fi

longpanda's avatar
longpanda committed
113
114
115
116
117
118
119
testEF=$(echo -en '\xEF' | ./tool/hexdump -n 1 -e '1/1 "%02X"')
if [ "$testEF" != "EF" ]; then
    vtdebug "testEF=##${testEF}##"
    vterr "There is something wrong with the interpreter !"
    exit 1
fi

longpanda's avatar
longpanda committed
120
grep "^$DISK" /proc/mounts | while read mtline; do
longpanda's avatar
longpanda committed
121
    mtpnt=$(echo $mtline | awk '{print $2}')
longpanda's avatar
longpanda committed
122
123
124
125
    vtdebug "Trying to umount $mtpnt ..."
    umount $mtpnt >/dev/null 2>&1
done

longpanda's avatar
longpanda committed
126
127
128
129
130
131
132
133
if swapon -s | grep -q "^${DISK}[0-9]"; then
    swapon -s | grep "^${DISK}[0-9]" | awk '{print $1}' | while read line; do
        vtdebug "Trying to swapoff $line ..."
        swapoff $line
    done
fi


longpanda's avatar
longpanda committed
134
135
if grep "$DISK" /proc/mounts; then
    vterr "$DISK is already mounted, please umount it first!"
longpanda's avatar
longpanda committed
136
    cd $OLDDIR
longpanda's avatar
longpanda committed
137
138
139
    exit 1
fi

longpanda's avatar
longpanda committed
140
141
142
143
144
145
if swapon -s | grep -q "^${DISK}[0-9]"; then
    vterr "$DISK is used as swap, please swapoff it first!"
    cd $OLDDIR
    exit 1
fi

longpanda's avatar
longpanda committed
146
147
148

if [ "$MODE" = "install" ]; then
    vtdebug "install ventoy ..."
longpanda's avatar
longpanda committed
149
150
151
152
153
154
155

    if parted -v > /dev/null 2>&1; then
        PARTTOOL='parted'
    elif fdisk -v >/dev/null 2>&1; then
        PARTTOOL='fdisk'
    else
        vterr "Both parted and fdisk are not found in the sysstem, Ventoy can't create new partition."
longpanda's avatar
longpanda committed
156
        cd $OLDDIR
longpanda's avatar
longpanda committed
157
158
159
160
161
162
163
164
165
166
        exit 1
    fi
    
    version=$(get_disk_ventoy_version $DISK)
    if [ $? -eq 0 ]; then
        if [ -z "$FORCE" ]; then
            vtwarn "$DISK already contains a Ventoy with version $version"
            vtwarn "Use -u option to do a safe upgrade operation."
            vtwarn "OR if you really want to reinstall ventoy to $DISK, please use -I option."
            vtwarn ""
longpanda's avatar
longpanda committed
167
            cd $OLDDIR
longpanda's avatar
longpanda committed
168
169
170
171
172
173
174
175
176
            exit 1
        fi
    fi
    
    disk_sector_num=$(cat /sys/block/${DISK#/dev/}/size)
    disk_size_gb=$(expr $disk_sector_num / 2097152)

    if [ $disk_sector_num -gt 4294967296 ]; then
        vterr "$DISK is over 2TB size, MBR will not work on it."
longpanda's avatar
longpanda committed
177
        cd $OLDDIR
longpanda's avatar
longpanda committed
178
179
180
181
182
        exit 1
    fi

    #Print disk info
    echo "Disk : $DISK"
longpanda's avatar
longpanda committed
183
    parted -s $DISK p 2>&1 | grep Model
longpanda's avatar
longpanda committed
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
    echo "Size : $disk_size_gb GB"
    echo ''

    vtwarn "Attention:"
    vtwarn "You will install Ventoy to $DISK."
    vtwarn "All the data on the disk $DISK will be lost!!!"
    echo ""

    read -p 'Continue? (y/n)'  Answer
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
            exit 0
        fi
    fi

    echo ""
    vtwarn "All the data on the disk $DISK will be lost!!!"
    read -p 'Double-check. Continue? (y/n)'  Answer
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
            exit 0
        fi
    fi


    if [ $disk_sector_num -le $VENTOY_SECTOR_NUM ]; then  
        vterr "No enough space in disk $DISK"
        exit 1
    fi

longpanda's avatar
longpanda committed
214
    if ! dd if=/dev/zero of=$DISK bs=1 count=512 status=none conv=fsync; then
longpanda's avatar
longpanda committed
215
216
217
218
        vterr "Write data to $DISK failed, please check whether it's in use."
        exit 1
    fi

longpanda's avatar
longpanda committed
219
    format_ventoy_disk $DISK $PARTTOOL
longpanda's avatar
longpanda committed
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239

    # format part1
    if ventoy_is_linux64; then
        cmd=./tool/mkexfatfs_64
    else
        cmd=./tool/mkexfatfs_32
    fi

    chmod +x ./tool/*

    # DiskSize > 32GB  Cluster Size use 128KB
    # DiskSize < 32GB  Cluster Size use 32KB
    if [ $disk_size_gb -gt 32 ]; then
        cluster_sectors=256
    else
        cluster_sectors=64
    fi

    $cmd -n ventoy -s $cluster_sectors ${DISK}1

longpanda's avatar
longpanda committed
240
241
    chmod +x ./tool/vtoy_gen_uuid

longpanda's avatar
longpanda committed
242
    vtinfo "writing data to disk ..."
longpanda's avatar
longpanda committed
243
244
245
    dd status=none conv=fsync if=./boot/boot.img of=$DISK bs=1 count=446
    ./tool/xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2047 seek=1
    ./tool/xzcat ./ventoy/ventoy.disk.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=$VENTOY_SECTOR_NUM seek=$part2_start_sector
longpanda's avatar
longpanda committed
246
247
    
    #disk uuid
longpanda's avatar
longpanda committed
248
    ./tool/vtoy_gen_uuid | dd status=none conv=fsync of=${DISK} seek=384 bs=1 count=16
longpanda's avatar
longpanda committed
249
250
    
    #disk signature
longpanda's avatar
longpanda committed
251
    ./tool/vtoy_gen_uuid | dd status=none conv=fsync of=${DISK} skip=12 seek=440 bs=1 count=4
longpanda's avatar
longpanda committed
252

longpanda's avatar
longpanda committed
253
    vtinfo "sync data ..."
longpanda's avatar
longpanda committed
254
    sync
longpanda's avatar
longpanda committed
255
256
257
    
    vtinfo "esp partition processing ..."
    
longpanda's avatar
longpanda committed
258
259
260
261
262
263
    sleep 1
    mtpnt=$(grep "^${DISK}2" /proc/mounts | awk '{print $2}')
    if [ -n "$mtpnt" ]; then
        umount $mtpnt >/dev/null 2>&1
    fi
    
longpanda's avatar
longpanda committed
264
265
266
267
268
269
270
271
272
    if [ "$SECUREBOOT" != "YES" ]; then
        mkdir ./tmp_mnt
        
        vtdebug "mounting part2 ...."
        for tt in 1 2 3; do
            if mount ${DISK}2 ./tmp_mnt; then
                vtdebug "mounting part2 success"
                break
            fi
longpanda's avatar
longpanda committed
273
274
275
276
277
            
            mtpnt=$(grep "^${DISK}2" /proc/mounts | awk '{print $2}')
            if [ -n "$mtpnt" ]; then
                umount $mtpnt >/dev/null 2>&1
            fi
longpanda's avatar
longpanda committed
278
279
            sleep 2
        done
longpanda's avatar
longpanda committed
280

longpanda's avatar
longpanda committed
281
282
283
        rm -f ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        rm -f ./tmp_mnt/EFI/BOOT/grubx64.efi
        rm -f ./tmp_mnt/EFI/BOOT/MokManager.efi
longpanda's avatar
longpanda committed
284
        rm -f ./tmp_mnt/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
longpanda's avatar
longpanda committed
285
286
287
288
289
        mv ./tmp_mnt/EFI/BOOT/grubx64_real.efi  ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        
        umount ./tmp_mnt
        rm -rf ./tmp_mnt
    fi
longpanda's avatar
longpanda committed
290
291
292
293
294
295
296
297
298
299
300
301
302
303

    echo ""
    vtinfo "Install Ventoy to $DISK successfully finished."
    echo ""
    
else
    vtdebug "update ventoy ..."
    
    oldver=$(get_disk_ventoy_version $DISK)
    if [ $? -ne 0 ]; then
        vtwarn "$DISK does not contain ventoy or data corupted"
        echo ""
        vtwarn "Please use -i option if you want to install ventoy to $DISK"
        echo ""
longpanda's avatar
longpanda committed
304
        cd $OLDDIR
longpanda's avatar
longpanda committed
305
306
307
308
309
310
311
312
313
314
315
        exit 1
    fi

    curver=$(cat ./ventoy/version)

    vtinfo "Upgrade operation is safe, all the data in the 1st partition (iso files and other) will be unchanged!"
    echo ""

    read -p "Update Ventoy  $oldver ===> $curver   Continue? (y/n)"  Answer
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
longpanda's avatar
longpanda committed
316
            cd $OLDDIR
longpanda's avatar
longpanda committed
317
318
319
320
321
322
            exit 0
        fi
    fi

    PART2=$(get_disk_part_name $DISK 2)
    
longpanda's avatar
longpanda committed
323
    dd status=none conv=fsync if=./boot/boot.img of=$DISK bs=1 count=440
longpanda's avatar
longpanda committed
324
    
longpanda's avatar
longpanda committed
325
    ./tool/xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2047 seek=1  
longpanda's avatar
longpanda committed
326
327
328

    disk_sector_num=$(cat /sys/block/${DISK#/dev/}/size) 
    part2_start=$(expr $disk_sector_num - $VENTOY_SECTOR_NUM)
longpanda's avatar
longpanda committed
329
    ./tool/xzcat ./ventoy/ventoy.disk.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=$VENTOY_SECTOR_NUM seek=$part2_start
longpanda's avatar
longpanda committed
330
331

    sync
longpanda's avatar
longpanda committed
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
    
    if [ "$SECUREBOOT" != "YES" ]; then
        mkdir ./tmp_mnt
        
        vtdebug "mounting part2 ...."
        for tt in 1 2 3; do
            if mount ${DISK}2 ./tmp_mnt; then
                vtdebug "mounting part2 success"
                break
            fi
            sleep 2
        done
              
        rm -f ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        rm -f ./tmp_mnt/EFI/BOOT/grubx64.efi
        rm -f ./tmp_mnt/EFI/BOOT/MokManager.efi
longpanda's avatar
longpanda committed
348
        rm -f ./tmp_mnt/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
longpanda's avatar
longpanda committed
349
350
351
352
353
        mv ./tmp_mnt/EFI/BOOT/grubx64_real.efi  ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        
        umount ./tmp_mnt
        rm -rf ./tmp_mnt
    fi
longpanda's avatar
longpanda committed
354
355
356
357
358
359
360

    echo ""
    vtinfo "Update Ventoy to $DISK successfully finished."
    echo ""
    
fi

longpanda's avatar
longpanda committed
361
cd $OLDDIR