"configs/rec/rec_icdar15_train.yml" did not exist on "f5613aa9bef21ee8b70d10d741df2cc5736b007f"
VentoyWorker.sh 11.4 KB
Newer Older
1
2
3
4
5
#!/bin/sh

. ./tool/ventoy_lib.sh

print_usage() {
longpanda's avatar
longpanda committed
6
    
7
8
9
10
    echo 'Usage:  Ventoy2Disk.sh CMD [ OPTION ] /dev/sdX'
    echo '  CMD:'
    echo '   -i  install ventoy to sdX (fail if disk already installed with ventoy)'
    echo '   -I  force install ventoy to sdX (no matter installed or not)'
longpanda's avatar
longpanda committed
11
    echo '   -u  update ventoy in sdX'
12
13
    echo ''
    echo '  OPTION: (optional)'
longpanda's avatar
longpanda committed
14
15
    echo '   -r SIZE_MB  preserve some space at the bottom of the disk (only for install)'
    echo '   -s          enable secure boot support (default is disabled)'
longpanda's avatar
longpanda committed
16
    echo '   -g          use GPT partition style, default is MBR (only for install)'
17
18
19
    echo ''
}

longpanda's avatar
longpanda committed
20

longpanda's avatar
longpanda committed
21
RESERVE_SIZE_MB=0
22
23
24
25
26
27
28
29
30
31
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"
longpanda's avatar
longpanda committed
32
33
    elif [ "$1" = "-g" ]; then
        VTGPT="YES"
longpanda's avatar
longpanda committed
34
35
36
37
    elif [ "$1" = "-r" ]; then
        RESERVE_SPACE="YES"
        shift
        RESERVE_SIZE_MB=$1
longpanda's avatar
longpanda committed
38
39
40
41
42
    elif [ "$1" = "-V" ] || [ "$1" = "--version" ]; then
        exit 0
    elif [ "$1" == "-h" ] || [ "$1" = "--help" ]; then
        print_usage
        exit 0
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
    else
        if ! [ -b "$1" ]; then
            vterr "$1 is NOT a valid device"
            print_usage
            exit 1
        fi
        DISK=$1
    fi
    
    shift
done

if [ -z "$MODE" ]; then
    print_usage
    exit 1
fi

if ! [ -b "$DISK" ]; then
    vterr "Disk $DISK does not exist"
    exit 1
fi

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

longpanda's avatar
longpanda committed
70
71
72
73
74
75
76
77
78
if [ -n "$RESERVE_SPACE" ]; then
    if echo $RESERVE_SIZE_MB | grep -q '^[0-9][0-9]*$'; then
        vtdebug "User will reserve $RESERVE_SIZE_MB MB disk space"
    else
        vterr "$RESERVE_SIZE_MB is invalid for reserved space"
        exit 1
    fi
fi

longpanda's avatar
longpanda committed
79
#check access 
80
81
82
83
84
85
86
87
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 ''
    exit 1
fi

longpanda's avatar
longpanda committed
88
vtdebug "MODE=$MODE FORCE=$FORCE RESERVE_SPACE=$RESERVE_SPACE RESERVE_SIZE_MB=$RESERVE_SIZE_MB"
89

longpanda's avatar
longpanda committed
90
91
92
93
#check tools
if check_tool_work_ok; then
    vtdebug "check tool work ok"
else
94
95
96
97
    vterr "Some tools can not run in current system. Please check log.txt for detail."
    exit 1
fi

longpanda's avatar
longpanda committed
98
#check mountpoint
99
100
101
102
103
104
105
106
107
108
109
grep "^$DISK" /proc/mounts | while read mtline; do
    mtpnt=$(echo $mtline | awk '{print $2}')
    vtdebug "Trying to umount $mtpnt ..."
    umount $mtpnt >/dev/null 2>&1
done

if grep "$DISK" /proc/mounts; then
    vterr "$DISK is already mounted, please umount it first!"
    exit 1
fi

longpanda's avatar
longpanda committed
110
111
112
113
114
115
#check swap partition
if swapon --help 2>&1 | grep -q '^ \-s,'; then
    if swapon -s | grep -q "^${DISK}[0-9]"; then
        vterr "$DISK is used as swap, please swapoff it first!"
        exit 1
    fi
116
117
118
119
120
121
fi


if [ "$MODE" = "install" ]; then
    vtdebug "install ventoy ..."

longpanda's avatar
longpanda committed
122
123
124
125
    if [ -n "$VTGPT" ]; then
        if parted -v > /dev/null 2>&1; then
            PARTTOOL='parted'
        else
longpanda's avatar
longpanda committed
126
127
            vterr "parted is not found in the system, Ventoy can't create new partitions without it."
            vterr "You should install \"GNU parted\" first."
longpanda's avatar
longpanda committed
128
129
            exit 1
        fi
130
    else
longpanda's avatar
longpanda committed
131
132
133
134
135
        if parted -v > /dev/null 2>&1; then
            PARTTOOL='parted'
        elif fdisk -v >/dev/null 2>&1; then
            PARTTOOL='fdisk'
        else
longpanda's avatar
longpanda committed
136
            vterr "Both parted and fdisk are not found in the system, Ventoy can't create new partitions."
longpanda's avatar
longpanda committed
137
138
            exit 1
        fi
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
    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 ""
            exit 1
        fi
    fi
    
    disk_sector_num=$(cat /sys/block/${DISK#/dev/}/size)
    disk_size_gb=$(expr $disk_sector_num / 2097152)

longpanda's avatar
update  
longpanda committed
155
    if [ $disk_sector_num -gt 4294967296 ] && [ -z "$VTGPT" ]; then
156
157
158
159
        vterr "$DISK is over 2TB size, MBR will not work on it."
        exit 1
    fi

longpanda's avatar
longpanda committed
160
161
162
163
164
165
166
167
168
169
    if [ -n "$RESERVE_SPACE" ]; then
        sum_size_mb=$(expr $RESERVE_SIZE_MB + $VENTOY_PART_SIZE_MB)
        reserve_sector_num=$(expr $sum_size_mb \* 2048)
        
        if [ $disk_sector_num -le $reserve_sector_num ]; then
            vterr "Can't reserve $RESERVE_SIZE_MB MB space from $DISK"
            exit 1
        fi
    fi

170
171
172
    #Print disk info
    echo "Disk : $DISK"
    parted -s $DISK p 2>&1 | grep Model
longpanda's avatar
longpanda committed
173
174
175
176
177
178
    echo "Size : $disk_size_gb GB"    
    if [ -n "$VTGPT" ]; then
        echo "Style: GPT"
    else
        echo "Style: MBR"
    fi    
179
180
    echo ''

longpanda's avatar
longpanda committed
181
182
183
184
185
    if [ -n "$RESERVE_SPACE" ]; then
        echo "You will reserve $RESERVE_SIZE_MB MB disk space "
    fi
    echo ''

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

longpanda's avatar
longpanda committed
191
    read -p 'Continue? (y/n) '  Answer
192
193
194
195
196
197
198
199
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
            exit 0
        fi
    fi

    echo ""
    vtwarn "All the data on the disk $DISK will be lost!!!"
longpanda's avatar
longpanda committed
200
    read -p 'Double-check. Continue? (y/n) '  Answer
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
    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

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

longpanda's avatar
longpanda committed
217
218
219
220
221
222
223
    if [ -n "$VTGPT" ]; then
        vtdebug "format_ventoy_disk_gpt $RESERVE_SIZE_MB $DISK $PARTTOOL ..."
        format_ventoy_disk_gpt $RESERVE_SIZE_MB $DISK $PARTTOOL
    else
        vtdebug "format_ventoy_disk_mbr $RESERVE_SIZE_MB $DISK $PARTTOOL ..."
        format_ventoy_disk_mbr $RESERVE_SIZE_MB $DISK $PARTTOOL
    fi
224
225
226
227
228
229
230
231

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

longpanda's avatar
add mod  
longpanda committed
232
233
234
    if [ -d ./tool/ ]; then 
        chmod +x -R ./tool/
    fi
235
236
237
238
239
240
241
242
243

    # 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

longpanda's avatar
longpanda committed
244
245
246
247
    PART1=$(get_disk_part_name $DISK 1)  
    PART2=$(get_disk_part_name $DISK 2)  

    $cmd -n ventoy -s $cluster_sectors ${PART1}
248
249

    vtinfo "writing data to disk ..."
longpanda's avatar
longpanda committed
250
    
251
    dd status=none conv=fsync if=./boot/boot.img of=$DISK bs=1 count=446
longpanda's avatar
longpanda committed
252
253
254
    
    if [ -n "$VTGPT" ]; then
        echo -en '\x22' | dd status=none of=$DISK conv=fsync bs=1 count=1 seek=92        
longpanda's avatar
longpanda committed
255
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2014 seek=34
longpanda's avatar
longpanda committed
256
257
        echo -en '\x23' | dd of=$DISK conv=fsync bs=1 count=1 seek=17908 status=none
    else
longpanda's avatar
longpanda committed
258
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2047 seek=1
longpanda's avatar
longpanda committed
259
260
    fi
    
longpanda's avatar
longpanda committed
261
    xzcat ./ventoy/ventoy.disk.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=$VENTOY_SECTOR_NUM seek=$part2_start_sector
262
263
264
265
266
267
268
269
270
271
272
273
274
    
    #disk uuid
    ./tool/vtoy_gen_uuid | dd status=none conv=fsync of=${DISK} seek=384 bs=1 count=16
    
    #disk signature
    ./tool/vtoy_gen_uuid | dd status=none conv=fsync of=${DISK} skip=12 seek=440 bs=1 count=4

    vtinfo "sync data ..."
    sync
    
    vtinfo "esp partition processing ..."
    
    sleep 1
longpanda's avatar
longpanda committed
275
    mtpnt=$(grep "^${PART2}" /proc/mounts | awk '{print $2}')
276
277
278
279
280
281
282
283
284
    if [ -n "$mtpnt" ]; then
        umount $mtpnt >/dev/null 2>&1
    fi
    
    if [ "$SECUREBOOT" != "YES" ]; then
        mkdir ./tmp_mnt
        
        vtdebug "mounting part2 ...."
        for tt in 1 2 3; do
longpanda's avatar
longpanda committed
285
            if mount ${PART2} ./tmp_mnt; then
286
287
288
289
                vtdebug "mounting part2 success"
                break
            fi
            
longpanda's avatar
longpanda committed
290
            mtpnt=$(grep "^${PART2}" /proc/mounts | awk '{print $2}')
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
            if [ -n "$mtpnt" ]; then
                umount $mtpnt >/dev/null 2>&1
            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
        rm -f ./tmp_mnt/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
        mv ./tmp_mnt/EFI/BOOT/grubx64_real.efi  ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        
        umount ./tmp_mnt
        rm -rf ./tmp_mnt
    fi

    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 ""
        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
            exit 0
        fi
    fi

    PART2=$(get_disk_part_name $DISK 2)
336
337
    SHORT_PART2=${PART2#/dev/}
    part2_start=$(cat /sys/class/block/$SHORT_PART2/start)
338
    
longpanda's avatar
update  
longpanda committed
339
    PART1_TYPE=$(dd if=$DISK bs=1 count=1 skip=450 status=none | ./tool/hexdump -n1 -e  '1/1 "%02X"')
340
    
longpanda's avatar
update  
longpanda committed
341
342
    if [ "$PART1_TYPE" = "EE" ]; then
        vtdebug "This is GPT partition style ..."        
longpanda's avatar
longpanda committed
343
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2014 seek=34
longpanda's avatar
update  
longpanda committed
344
345
346
347
        echo -en '\x23' | dd of=$DISK conv=fsync bs=1 count=1 seek=17908 status=none
    else
        vtdebug "This is MBR partition style ..."
        dd status=none conv=fsync if=./boot/boot.img of=$DISK bs=1 count=440
longpanda's avatar
longpanda committed
348
    
longpanda's avatar
update  
longpanda committed
349
350
351
352
353
354
355
356
357
        PART1_ACTIVE=$(dd if=$DISK bs=1 count=1 skip=446 status=none | ./tool/hexdump -n1 -e  '1/1 "%02X"')
        PART2_ACTIVE=$(dd if=$DISK bs=1 count=1 skip=462 status=none | ./tool/hexdump -n1 -e  '1/1 "%02X"')
        
        vtdebug "PART1_ACTIVE=$PART1_ACTIVE  PART2_ACTIVE=$PART2_ACTIVE"
        if [ "$PART1_ACTIVE" = "00" ] && [ "$PART2_ACTIVE" = "80" ]; then
            vtdebug "change 1st partition active, 2nd partition inactive ..."
            echo -en '\x80' | dd of=$DISK conv=fsync bs=1 count=1 seek=446 status=none
            echo -en '\x00' | dd of=$DISK conv=fsync bs=1 count=1 seek=462 status=none
        fi
longpanda's avatar
longpanda committed
358
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2047 seek=1
longpanda's avatar
longpanda committed
359
    fi
longpanda's avatar
longpanda committed
360

longpanda's avatar
longpanda committed
361
    xzcat ./ventoy/ventoy.disk.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=$VENTOY_SECTOR_NUM seek=$part2_start
362
363
364
365
366
367
368
369

    sync
    
    if [ "$SECUREBOOT" != "YES" ]; then
        mkdir ./tmp_mnt
        
        vtdebug "mounting part2 ...."
        for tt in 1 2 3; do
longpanda's avatar
longpanda committed
370
            if mount ${PART2} ./tmp_mnt; then
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
                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
        rm -f ./tmp_mnt/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
        mv ./tmp_mnt/EFI/BOOT/grubx64_real.efi  ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        
        umount ./tmp_mnt
        rm -rf ./tmp_mnt
    fi

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