1 #************************************************************************************
2 # Copyright (c) 2020, longpanda <admin@ventoy.net>
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License as
6 # published by the Free Software Foundation; either version 3 of the
7 # License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 #************************************************************************************
19 if [ "$grub_platform" = "pc" ]; then
25 function ventoy_pause {
26 echo "press Enter to continue ......"
30 function ventoy_debug_pause {
31 if [ -n "${vtdebug_flag}" ]; then
32 echo "press Enter to continue ......"
37 function ventoy_cli_console {
38 if [ -z "$vtoy_display_mode" ]; then
39 terminal_output console
40 elif [ "$vtoy_display_mode" = "GUI" ]; then
41 terminal_output console
45 function ventoy_gui_console {
46 if [ -z "$vtoy_display_mode" ]; then
47 terminal_output gfxterm
48 elif [ "$vtoy_display_mode" = "GUI" ]; then
49 terminal_output gfxterm
53 function ventoy_acpi_param {
54 if [ "$VTOY_PARAM_NO_ACPI" != "1" ]; then
55 vt_acpi_param "$1" "$2"
59 function ventoy_vcfg_proc {
60 if vt_check_custom_boot "${1}" vt_vcfg; then
61 set vtoy_chosen_path="${1}"
62 vt_file_basefile "${vtoy_chosen_path}" vtoy_chosen_file
64 export vtoy_chosen_path
65 export vtoy_chosen_file
67 configfile "${vtoy_iso_part}${vt_vcfg}"
74 function ventoy_language {
75 configfile $prefix/menulang.cfg
78 function ventoy_diagnosis {
80 configfile $prefix/debug.cfg
83 function ventoy_localboot {
84 configfile $prefix/localboot.cfg
87 function ventoy_ext_menu {
88 if [ -e $vt_plugin_path/ventoy/ventoy_grub.cfg ]; then
89 set ventoy_new_context=1
90 configfile $vt_plugin_path/ventoy/ventoy_grub.cfg
91 unset ventoy_new_context
93 echo "ventoy_grub.cfg NOT exist."
94 echo -en "\n$VTLANG_ENTER_EXIT ..."
99 function ventoy_checksum {
100 if [ -f "${vtoy_iso_part}${VTOY_CHKSUM_FILE_PATH}" ]; then
101 configfile $prefix/checksum.cfg
105 function ventoy_show_help {
106 if [ -f $prefix/help.tar.gz ]; then
107 if [ -z "$vtoy_help_txt_mem_addr" ]; then
108 vt_load_file_to_mem "auto" $prefix/help.tar.gz vtoy_help_txt_mem
111 loopback vt_help_tarfs mem:${vtoy_help_txt_mem_addr}:size:${vtoy_help_txt_mem_size}
112 vt_cur_menu_lang vtCurLang
113 if [ -f "(vt_help_tarfs)/help/${vtCurLang}.txt" ]; then
114 cat "(vt_help_tarfs)/help/${vtCurLang}.txt"
116 cat "(vt_help_tarfs)/help/en_US.txt"
118 loopback -d vt_help_tarfs
122 function ventoy_load_menu_lang_file {
123 vt_load_file_to_mem "auto" $vtoy_efi_part/grub/menu.tar.gz vtoy_menu_lang_mem
124 loopback vt_menu_tarfs mem:${vtoy_menu_lang_mem_addr}:size:${vtoy_menu_lang_mem_size}
127 function get_os_type {
130 if vt_str_begin "$vt_volume_id" "DLC Boot"; then
131 if [ -f (loop)/DLCBoot.exe ]; then
135 for file in "efi/microsoft/boot/bcd" "sources/boot.wim" "boot/bcd" "bootmgr.efi" "boot/etfsboot.com" ; do
136 if vt_file_exist_nocase (loop)/$file; then
143 if [ "$vtoy_os" = "Linux" ]; then
144 if vt_strstr "$vt_system_id" "FreeBSD"; then
146 set vt_unix_type=FreeBSD
147 elif [ -e (loop)/bin/freebsd-version ]; then
149 set vt_unix_type=FreeBSD
150 elif [ -e (loop)/boot/kernel/geom_ventoy.ko ]; then
152 set vt_unix_type=FreeBSD
153 elif vt_str_begin "$vt_system_id" "DragonFly"; then
155 set vt_unix_type=DragonFly
158 elif [ -e (loop)/boot/kernel/kernel ]; then
159 if file --is-x86-kfreebsd (loop)/boot/kernel/kernel; then
161 set vt_unix_type=FreeBSD
162 elif file --is-x86-knetbsd (loop)/boot/kernel/kernel; then
164 set vt_unix_type=NetBSD
169 if [ -n "${vtdebug_flag}" ]; then
170 echo ISO is "$vtoy_os"
174 function vt_check_compatible_pe {
175 #Check for PE without external tools
176 #set compatible if ISO file is less than 80MB
177 if [ $vt_chosen_size -GT 33554432 -a $vt_chosen_size -LE 83886080 ]; then
178 set ventoy_compatible=YES
184 function vt_check_compatible_linux {
185 if vt_str_begin "$vt_volume_id" "embootkit"; then
186 set ventoy_compatible=YES
187 elif [ -e "$1/casper/tinycore.gz" ]; then
188 set ventoy_compatible=YES
194 function locate_initrd {
195 vt_linux_locate_initrd
197 if [ -n "${vtdebug_flag}" ]; then
203 function locate_wim {
204 vt_windows_locate_wim_patch (loop) "$1"
206 if [ -n "${vtdebug_flag}" ]; then
207 echo '###############################################'
209 echo '###############################################'
214 function distro_specify_wim_patch {
215 if [ -d (loop)/h3pe ]; then
216 vt_windows_collect_wim_patch wim /BOOT/H3_10PE.WIM
217 vt_windows_collect_wim_patch wim /BOOT/H3_7PE.WIM
218 vt_windows_collect_wim_patch wim /BOOT/H3_8PE.WIM
219 vt_windows_collect_wim_patch wim /BOOT/H3_81PE.WIM
220 elif [ -d (loop)/2k10/winpe ]; then
221 vt_windows_collect_wim_patch wim /2k10/winpe/w1086pe.wim
222 vt_windows_collect_wim_patch wim /2k10/winpe/w8x86pe.wim
223 vt_windows_collect_wim_patch wim /2k10/winpe/w7x86pe.wim
227 function distro_specify_wim_patch_phase2 {
228 if [ -f (loop)/boot/boot.wim ]; then
229 vt_windows_collect_wim_patch wim /boot/boot.wim
230 elif [ -f (loop)/sources/boot.wim ]; then
231 vt_windows_collect_wim_patch wim /sources/boot.wim
234 if vt_str_begin "$vt_volume_id" "DLC Boot"; then
235 for vwfile in "/DLC1/WinPE/W11x64.wim" "/DLC1/WinPE/W10x64.wim" "/DLC1/WinPE/W10x86.wim"; do
236 if [ -f (loop)/$vwfile ]; then
237 vt_windows_collect_wim_patch wim $vwfile
245 function distro_specify_initrd_file {
246 if [ -e (loop)/boot/all.rdz ]; then
247 vt_linux_specify_initrd_file /boot/all.rdz
248 elif [ -e (loop)/boot/xen.gz ]; then
249 if [ -e (loop)/install.img ]; then
250 vt_linux_specify_initrd_file /install.img
252 elif [ -d (loop)/casper ]; then
253 if [ -e (loop)/casper/initrd ]; then
254 vt_linux_specify_initrd_file /casper/initrd
256 if [ -e (loop)/casper/initrd.gz ]; then
257 vt_linux_specify_initrd_file /casper/initrd.gz
259 if [ -e (loop)/casper/initrd-oem ]; then
260 vt_linux_specify_initrd_file /casper/initrd-oem
262 elif [ -e (loop)/boot/grub/initrd.xz ]; then
263 vt_linux_specify_initrd_file /boot/grub/initrd.xz
264 elif [ -e (loop)/initrd.gz ]; then
265 vt_linux_specify_initrd_file /initrd.gz
266 elif [ -e (loop)/slax/boot/initrfs.img ]; then
267 vt_linux_specify_initrd_file /slax/boot/initrfs.img
268 elif [ -e (loop)/minios/boot/initrfs.img ]; then
269 vt_linux_specify_initrd_file /minios/boot/initrfs.img
270 elif [ -e (loop)/pmagic/initrd.img ]; then
271 vt_linux_specify_initrd_file /pmagic/initrd.img
272 elif [ -e (loop)/boot/initrd.xz ]; then
273 vt_linux_specify_initrd_file /boot/initrd.xz
274 elif [ -e (loop)/boot/initrd.gz ]; then
275 vt_linux_specify_initrd_file /boot/initrd.gz
276 elif [ -f (loop)/boot/initrd ]; then
277 vt_linux_specify_initrd_file /boot/initrd
278 elif [ -f (loop)/boot/x86_64/loader/initrd ]; then
279 vt_linux_specify_initrd_file /boot/x86_64/loader/initrd
280 elif [ -f (loop)/boot/initramfs-x86_64.img ]; then
281 vt_linux_specify_initrd_file /boot/initramfs-x86_64.img
282 elif [ -f (loop)/boot/isolinux/initramfs_data64.cpio.gz ]; then
283 vt_linux_specify_initrd_file /boot/isolinux/initramfs_data64.cpio.gz
284 elif [ -f (loop)/boot/initrd.img ]; then
285 vt_linux_specify_initrd_file /boot/initrd.img
289 if [ -f (loop)/isolinux/initrd.gz ]; then
290 vt_linux_specify_initrd_file /isolinux/initrd.gz
293 if vt_str_begin "$vt_volume_id" "QUBES"; then
294 vt_linux_specify_initrd_file /images/pxeboot/initrd.img
297 if [ "$vt_chosen_size" = "1133375488" ]; then
298 if [ -d (loop)/boot/grub/x86_64-efi ]; then
299 vt_cpio_busybox64 "64h"
305 function distro_specify_initrd_file_phase2 {
306 if [ -f (loop)/boot/initrd.img ]; then
307 vt_linux_specify_initrd_file /boot/initrd.img
308 elif [ -f (loop)/Setup/initrd.gz ]; then
309 vt_linux_specify_initrd_file /Setup/initrd.gz
310 elif [ -f (loop)/isolinux/initramfs ]; then
311 vt_linux_specify_initrd_file /isolinux/initramfs
312 elif [ -f (loop)/boot/iniramfs.igz ]; then
313 vt_linux_specify_initrd_file /boot/iniramfs.igz
314 elif [ -f (loop)/initrd-x86_64 ]; then
315 vt_linux_specify_initrd_file /initrd-x86_64
316 elif [ -f (loop)/live/initrd.img ]; then
317 vt_linux_specify_initrd_file /live/initrd.img
318 elif [ -f (loop)/initrd.img ]; then
319 vt_linux_specify_initrd_file /initrd.img
320 elif [ -f (loop)/sysresccd/boot/x86_64/sysresccd.img ]; then
321 vt_linux_specify_initrd_file /sysresccd/boot/x86_64/sysresccd.img
322 elif [ -f (loop)/CDlinux/initrd ]; then
323 vt_linux_specify_initrd_file /CDlinux/initrd
324 elif [ -f (loop)/parabola/boot/x86_64/parabolaiso.img ]; then
325 vt_linux_specify_initrd_file /parabola/boot/x86_64/parabolaiso.img
326 if [ -f (loop)/parabola/boot/i686/parabolaiso.img ]; then
327 vt_linux_specify_initrd_file /parabola/boot/i686/parabolaiso.img
329 elif [ -f (loop)/parabola/boot/x86_64/initramfs-linux-libre.img ]; then
330 vt_linux_specify_initrd_file /parabola/boot/x86_64/initramfs-linux-libre.img
331 if [ -f (loop)/parabola/boot/i686/initramfs-linux-libre.img ]; then
332 vt_linux_specify_initrd_file /parabola/boot/i686/initramfs-linux-libre.img
334 elif [ -f (loop)/hyperbola/boot/x86_64/hyperiso.img ]; then
335 vt_linux_specify_initrd_file /hyperbola/boot/x86_64/hyperiso.img
336 if [ -f (loop)/hyperbola/boot/i686/hyperiso.img ]; then
337 vt_linux_specify_initrd_file /hyperbola/boot/i686/hyperiso.img
339 elif [ -f (loop)/EFI/BOOT/initrd.img ]; then
341 vt_linux_specify_initrd_file /EFI/BOOT/initrd.img
342 if [ "$grub_platform" != "pc" ]; then
343 vt_add_replace_file 0 "initrd.img"
345 elif [ -f (loop)/initrd ]; then
346 vt_linux_specify_initrd_file /initrd
347 elif [ -f (loop)/live/initrd1 ]; then
348 vt_linux_specify_initrd_file /live/initrd1
349 elif [ -f (loop)/isolinux/initrd.img ]; then
350 vt_linux_specify_initrd_file /isolinux/initrd.img
351 elif [ -f (loop)/isolinux/initrd.gz ]; then
352 vt_linux_specify_initrd_file /isolinux/initrd.gz
353 elif [ -f (loop)/syslinux/kernel/initramfs.gz ]; then
354 vt_linux_specify_initrd_file /syslinux/kernel/initramfs.gz
355 elif vt_strstr "$vt_volume_id" "Daphile"; then
356 vt_linux_parse_initrd_isolinux (loop)/isolinux/
357 elif [ -f (loop)/boot/rootfs.xz ]; then
358 vt_linux_specify_initrd_file /boot/rootfs.xz
359 if [ "$grub_platform" != "pc" ]; then
360 vt_add_replace_file 0 "minimal\\x86_64\\rootfs.xz"
362 elif [ -f (loop)/arch/boot/x86_64/archiso.img ]; then
363 vt_linux_specify_initrd_file /arch/boot/x86_64/archiso.img
364 if [ "$grub_platform" != "pc" ]; then
365 vt_add_replace_file 0 "EFI\\archiso\\archiso.img"
367 elif [ -f (loop)/blackarch/boot/x86_64/archiso.img ]; then
368 vt_linux_specify_initrd_file /blackarch/boot/x86_64/archiso.img
369 elif [ -f (loop)/blackarch/boot/x86_64/initramfs-linux.img ]; then
370 vt_linux_specify_initrd_file /blackarch/boot/x86_64/initramfs-linux.img
372 elif [ -f (loop)/install.amd/initrd.gz ]; then
373 vt_linux_specify_initrd_file /live/initrd2.img
374 vt_linux_specify_initrd_file /install.amd/initrd.gz
375 vt_linux_specify_initrd_file /install.amd/gtk/initrd.gz
376 elif [ -f (loop)/boot/grub/kernels.cfg ]; then
377 vt_linux_parse_initrd_grub file (loop)/boot/grub/kernels.cfg
378 elif [ -f (loop)/austrumi/initrd.gz ]; then
379 vt_linux_specify_initrd_file /austrumi/initrd.gz
380 if [ -f (loop)/EFI/BOOT/bootx64.efi ]; then
381 vt_cpio_busybox64 "64h"
383 elif [ -f (loop)/boot/initfs.x86_64-efi ]; then
384 vt_linux_specify_initrd_file /boot/initfs.x86_64-efi
385 if [ -f (loop)/boot/initfs.i386-pc ]; then
386 vt_linux_specify_initrd_file /boot/initfs.i386-pc
388 elif [ -f (loop)/antiX/initrd.gz ]; then
389 vt_linux_specify_initrd_file /antiX/initrd.gz
390 elif [ -f (loop)/360Disk/initrd.gz ]; then
391 vt_linux_specify_initrd_file /360Disk/initrd.gz
392 elif [ -f (loop)/porteus/initrd.xz ]; then
393 vt_linux_specify_initrd_file /porteus/initrd.xz
394 elif [ -f (loop)/pyabr/boot/initrfs.img ]; then
395 vt_linux_specify_initrd_file /pyabr/boot/initrfs.img
396 elif [ -f (loop)/initrd0.img ]; then
397 vt_linux_specify_initrd_file /initrd0.img
398 elif [ -f (loop)/sysresccd/boot/i686/sysresccd.img ]; then
399 vt_linux_specify_initrd_file /sysresccd/boot/i686/sysresccd.img
400 elif [ -f (loop)/boot/full.cz ]; then
401 vt_linux_specify_initrd_file /boot/full.cz
402 elif [ -f (loop)/images/pxeboot/initrd.img ]; then
403 vt_linux_specify_initrd_file /images/pxeboot/initrd.img
408 function ventoy_get_ghostbsd_ver {
409 # fallback to parse version from elf /boot/kernel/kernel
410 set vt_freebsd_ver=xx
413 function ventoy_get_furybsd_ver {
414 if regexp "13\.[0-9]" "$2"; then
415 set vt_freebsd_ver=13.x
417 set vt_freebsd_ver=12.x
421 function ventoy_get_freenas_ver {
422 set vt_freebsd_ver=11.x
424 if [ -e (loop)/FreeNAS-MANIFEST ]; then
425 vt_parse_freenas_ver (loop)/FreeNAS-MANIFEST vt_freenas_ver
426 if regexp "^13\.[0-9]" "$vt_freenas_ver"; then
427 set vt_freebsd_ver=13.x
428 elif regexp "^12\.[0-9]" "$vt_freenas_ver"; then
429 set vt_freebsd_ver=12.x
430 elif regexp "^11\.[0-9]" "$vt_freenas_ver"; then
431 set vt_freebsd_ver=11.x
436 function ventoy_get_truenas_ver {
437 set vt_freebsd_ver=12.x
439 if [ -e (loop)/TrueNAS-MANIFEST ]; then
440 vt_parse_freenas_ver (loop)/TrueNAS-MANIFEST vt_truenas_ver
441 if regexp "^13\.[0-9]" "$vt_truenas_ver"; then
442 set vt_freebsd_ver=13.x
443 elif regexp "^12\.[0-9]" "$vt_truenas_ver"; then
444 set vt_freebsd_ver=12.x
445 elif regexp "^11\.[0-9]" "$vt_truenas_ver"; then
446 set vt_freebsd_ver=11.x
451 function ventoy_get_midnightbsd_ver {
452 if vt_str_begin "$vt_volume_id" "1_"; then
453 set vt_freebsd_ver=11.x
454 elif vt_str_begin "$vt_volume_id" "2_"; then
455 set vt_freebsd_ver=2.x
456 elif vt_str_begin "$vt_volume_id" "3_"; then
457 set vt_freebsd_ver=3.x
461 function ventoy_freebsd_proc {
462 set vtFreeBsdDistro=FreeBSD
463 set vt_freebsd_ver=xx
465 if [ -e (loop)/boot/kernel/geom_ventoy.ko ]; then
466 vt_unix_ko_fillmap /boot/kernel/geom_ventoy.ko
470 if vt_strstr "$vt_volume_id" "GHOSTBSD"; then
471 ventoy_get_ghostbsd_ver "$1" "${chosen_path}"
472 elif vt_strstr "$vt_volume_id" "FREENAS"; then
473 ventoy_get_freenas_ver "$1" "${chosen_path}"
474 elif vt_strstr "$vt_volume_id" "TRUENAS"; then
475 ventoy_get_truenas_ver "$1" "${chosen_path}"
476 elif vt_strstr "$vt_volume_id" "FURYBSD"; then
477 ventoy_get_furybsd_ver "$1" "${chosen_path}"
478 elif regexp "^13_[0-9]" "$vt_volume_id"; then
479 set vt_freebsd_ver=13.x
480 elif regexp "^12_[0-9]" "$vt_volume_id"; then
481 set vt_freebsd_ver=12.x
482 elif regexp "^11_[0-9]" "$vt_volume_id"; then
483 set vt_freebsd_ver=11.x
484 elif regexp "^10_[0-9]" "$vt_volume_id"; then
485 set vt_freebsd_ver=10.x
486 elif regexp "^9_[0-9]" "$vt_volume_id"; then
487 set vt_freebsd_ver=9.x
488 elif [ -d (loop)/usr/midnightbsd-dist ]; then
489 ventoy_get_midnightbsd_ver "$1" "${chosen_path}"
490 set vtFreeBsdDistro=MidnightBSD
491 elif [ -e (loop)/bin/freebsd-version ]; then
492 vt_unix_parse_freebsd_ver (loop)/bin/freebsd-version vt_userland_ver
493 if regexp "\"13\.[0-9]-" "$vt_userland_ver"; then
494 set vt_freebsd_ver=13.x
495 elif regexp "\"12\.[0-9]-" "$vt_userland_ver"; then
496 set vt_freebsd_ver=12.x
497 elif regexp "\"11\.[0-9]-" "$vt_userland_ver"; then
498 set vt_freebsd_ver=11.x
499 elif regexp "\"10\.[0-9]-" "$vt_userland_ver"; then
500 set vt_freebsd_ver=10.x
501 elif regexp "\"9\.[0-9]-" "$vt_userland_ver"; then
502 set vt_freebsd_ver=9.x
504 elif [ -e (loop)/README.TXT ]; then
505 vt_1st_line (loop)/README.TXT vt_freebsd_line1
506 if regexp "FreeBSD 13\.[0-9]-" "$vt_freebsd_line1"; then
507 set vt_freebsd_ver=13.x
508 elif regexp "FreeBSD 12\.[0-9]-" "$vt_freebsd_line1"; then
509 set vt_freebsd_ver=12.x
510 elif regexp "FreeBSD 11\.[0-9]-" "$vt_freebsd_line1"; then
511 set vt_freebsd_ver=11.x
512 elif regexp "FreeBSD 10\.[0-9]-" "$vt_freebsd_line1"; then
513 set vt_freebsd_ver=10.x
514 elif regexp "FreeBSD 9\.[0-9]-" "$vt_freebsd_line1"; then
515 set vt_freebsd_ver=9.x
517 elif vt_strstr "${chosen_path}" "MidnightBSD"; then
518 set vt_freebsd_ver=9.x
522 if [ -e (loop)/usr/freebsd-dist/cloninst.sh ]; then
523 set vtFreeBsdDistro=ClonOS
526 set vt_freebsd_bit=64
527 for file in "/boot/kernel/kernel" "/boot/kernel/kernel.gz"; do
528 if [ -e (loop)/$file ]; then
529 if file --is-i386-kfreebsd (loop)/$file; then
530 set vt_freebsd_bit=32
536 if [ "$vt_freebsd_ver" = "xx" ]; then
537 if [ -e (loop)/boot/kernel/kernel ]; then
538 vt_unix_parse_freebsd_ver_elf (loop)/boot/kernel/kernel $vt_freebsd_bit vt_freebsd_ver
539 elif [ -e (loop)/boot/kernel/kernel.gz ]; then
540 vt_unix_parse_freebsd_ver_elf (loop)/boot/kernel/kernel.gz $vt_freebsd_bit vt_freebsd_ver
543 if [ "$vt_freebsd_ver" = "xx" ]; then
544 set vt_freebsd_ver=13.x
548 if [ -n "${vtdebug_flag}" ]; then
549 echo "This is $vtFreeBsdDistro $vt_freebsd_ver ${vt_freebsd_bit}bit"
552 unset vt_unix_mod_path
553 for file in "/COPYRIGHT" "/FreeNAS-MANIFEST" "/TrueNAS-MANIFEST" "/version" "/etc/fstab"; do
554 if [ -e (loop)${file} ]; then
555 set vt_unix_mod_path=${file}
560 if [ -n "$vt_unix_mod_path" ]; then
561 vt_unix_replace_ko $vt_unix_mod_path (vtunix)/ventoy_unix/$vtFreeBsdDistro/geom_ventoy_ko/$vt_freebsd_ver/$vt_freebsd_bit/geom_ventoy.ko.xz
562 vt_unix_replace_conf FreeBSD "${1}${chosen_path}"
563 elif [ -e (loop)/easyre.ufs.uzip ]; then
564 vt_unix_replace_ko "/boot/grub/i386-pc/linux.mod" (vtunix)/ventoy_unix/$vtFreeBsdDistro/geom_ventoy_ko/$vt_freebsd_ver/$vt_freebsd_bit/geom_ventoy.ko.xz
565 if [ "$grub_platform" = "pc" ]; then
566 vt_unix_replace_grub_conf "/boot/grub/i386-pc/linux.mod" "cd9"
568 vt_unix_replace_conf FreeBSD "${1}${chosen_path}" "cd9"
573 function ventoy_dragonfly_proc {
575 unset vt_unix_mod_path
576 for file in "/boot/kernel/initrd.img.gz"; do
577 if [ -e (loop)${file} ]; then
578 set vt_unix_mod_path=${file}
583 vt_unix_replace_ko $vt_unix_mod_path ${vtoy_path}/dragonfly.mfs.xz
584 vt_unix_fill_image_desc
586 vt_unix_replace_conf DragonFly "${1}${chosen_path}"
589 function ventoy_unix_comm_proc {
592 vt_unix_check_vlnk "${1}${chosen_path}"
594 if [ "$ventoy_compatible" = "NO" ]; then
595 loopback vtunix $vtoy_efi_part/ventoy/ventoy_unix.cpio
597 if [ "$vt_unix_type" = "FreeBSD" ]; then
598 ventoy_freebsd_proc "$1" "${chosen_path}"
599 elif [ "$vt_unix_type" = "DragonFly" ]; then
600 ventoy_dragonfly_proc "$1" "${chosen_path}"
601 elif [ "$vt_unix_type" = "NetBSD" ]; then
602 echo "NetBSD not supported"
606 if [ -n "${vtdebug_flag}" ]; then
607 echo "Unknown unix type"
612 vt_unix_chain_data "${1}${chosen_path}"
617 function uefi_windows_menu_func {
620 unset vt_cur_wimboot_mode
621 if vt_check_mode 4 "$vt_chosen_name"; then
622 set vt_cur_wimboot_mode=1
625 if [ "$ventoy_compatible" = "NO" -o "$vt_cur_wimboot_mode" = "1" ]; then
626 if [ "$ventoy_fs_probe" = "iso9660" ]; then
628 vt_iso9660_nojoliet 1
632 for file in "efi/microsoft/boot/bcd"; do
633 vt_windows_collect_wim_patch bcd (loop)/$file
636 vt_windows_count_wim_patch vt_wim_cnt
637 if [ $vt_wim_cnt -eq 0 ]; then
638 distro_specify_wim_patch_phase2
642 locate_wim "${chosen_path}"
645 vt_windows_chain_data "${1}${chosen_path}"
648 if [ "$vt_cur_wimboot_mode" = "1" ]; then
652 if [ -n "$vtoy_chain_mem_addr" ]; then
653 ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
655 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi env_param=${env_param} isoefi=${LoadIsoEfiDriver} iso_${ventoy_fs_probe} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
658 echo "chain empty failed"
663 function uefi_find_replace_initrd {
664 if vt_get_efi_vdisk_offset "${1}${2}" vt_efivdisk_offset; then
665 loopback -s $vt_efivdisk_offset vtefivdisk "${1}${2}"
668 vt_search_replace_initrd (vtefivdisk) vt_rp_initrd
670 if [ -n "$vt_rp_initrd" ]; then
671 vt_add_replace_file $3 "$vt_rp_initrd"
674 loopback -d vtefivdisk
679 function uefi_linux_menu_func {
681 if [ "$ventoy_compatible" = "NO" ]; then
683 if [ "$ventoy_fs_probe" = "udf" ]; then
685 set ventoy_fs_probe=iso9660
689 vt_load_cpio $vtoy_path "$2" "$1" "busybox=$ventoy_busybox_ver"
691 vt_linux_clear_initrd
693 if [ -d (loop)/pmagic ]; then
694 vt_linux_specify_initrd_file /pmagic/initrd.img
696 for file in "boot/grub/grub.cfg" "EFI/BOOT/grub.cfg" "EFI/boot/grub.cfg" "efi/boot/grub.cfg" "EFI/BOOT/BOOTX64.conf" "/grub/grub.cfg"; do
697 if [ -e (loop)/$file ]; then
698 vt_linux_parse_initrd_grub file (loop)/$file
703 # special process for special distros
704 if [ -d (loop)/loader/entries ]; then
705 vt_linux_parse_initrd_grub dir (loop)/loader/entries/
706 elif [ -d (loop)/boot/grub ]; then
707 vt_linux_parse_initrd_grub dir (loop)/boot/grub/
710 distro_specify_initrd_file
712 vt_linux_initrd_count vtcount
714 if [ $vtcount -eq 0 ]; then
715 if [ -e (loop)/EFI/boot/livegrub.cfg ]; then
716 vt_linux_parse_initrd_grub file (loop)/EFI/boot/livegrub.cfg
718 distro_specify_initrd_file_phase2
720 if [ "$vt_efi_dir" = "NO" ]; then
721 if [ -f (loop)/efi.img ]; then
722 vt_add_replace_file 0 "initrd"
729 if [ -d (loop)/loader/entries ]; then
730 vt_linux_get_main_initrd_index vtindex
732 if [ -d (loop)/arch ]; then
733 if [ -f (loop)/arch/boot/x86_64/archiso.img ]; then
734 vt_add_replace_file $vtindex "EFI\\archiso\\archiso.img"
735 elif [ -f (loop)/arch/boot/x86_64/initramfs-linux.img ]; then
736 vt_add_replace_file $vtindex "arch\\boot\\x86_64\\initramfs-linux.img"
737 elif [ -f (loop)/boot/initramfs_x86_64.img ]; then
738 vt_add_replace_file $vtindex "boot\\initramfs_x86_64.img"
740 elif [ -d (loop)/blackarch ]; then
741 if [ -f (loop)/blackarch/boot/x86_64/archiso.img ]; then
742 vt_add_replace_file $vtindex "EFI\\archiso\\archiso.img"
743 elif [ -f (loop)/blackarch/boot/x86_64/initramfs-linux.img ]; then
744 vt_add_replace_file $vtindex "blackarch\\boot\\x86_64\\initramfs-linux.img"
746 elif [ -d (loop)/anarchy ]; then
747 if [ -f (loop)/anarchy/boot/x86_64/initramfs-linux.img ]; then
748 vt_add_replace_file $vtindex "anarchy\\boot\\x86_64\\initramfs-linux.img"
750 elif [ -d (loop)/parabola ]; then
751 if [ -f (loop)/parabola/boot/x86_64/parabolaiso.img ]; then
752 vt_add_replace_file $vtindex "EFI\\parabolaiso\\parabolaiso.img"
753 elif [ -f (loop)/parabola/boot/x86_64/initramfs-linux-libre.img ]; then
754 vt_add_replace_file $vtindex "parabola\\boot\\x86_64\\initramfs-linux-libre.img"
756 elif [ -f (loop)/EFI/BOOT/initrd.gz ]; then
757 vt_add_replace_file $vtindex "EFI\\BOOT\\initrd.gz"
758 elif [ -f (loop)/loader/entries/thinstation.conf ]; then
759 vt_add_replace_file $vtindex "boot\\initrd"
760 elif [ -f (loop)/loader/entries/pisi-efi-x86_64.conf ]; then
761 vt_add_replace_file $vtindex "EFI\\pisi\\initrd.img"
764 vt_get_replace_file_cnt vt_replace_cnt
765 if [ $vt_replace_cnt -eq 0 ]; then
766 uefi_find_replace_initrd "$1" "$2" $vtindex
768 elif [ -d (loop)/EFI/boot/entries ]; then
769 if [ -f (loop)/parabola/boot/x86_64/parabolaiso.img ]; then
770 vt_add_replace_file 0 "EFI\\parabolaiso\\parabolaiso.img"
771 elif [ -f (loop)/hyperbola/boot/x86_64/hyperiso.img ]; then
772 vt_add_replace_file 0 "EFI\\hyperiso\\hyperiso.img"
774 elif [ -d (loop)/EFI/BOOT/entries ]; then
775 vt_linux_get_main_initrd_index vtindex
777 if [ -f (loop)/parabola/boot/x86_64/parabolaiso.img ]; then
778 vt_add_replace_file 0 "EFI\\parabolaiso\\parabolaiso.img"
779 elif [ -f (loop)/parabola/boot/x86_64/initramfs-linux-libre.img ]; then
780 vt_add_replace_file $vtindex "parabola\\boot\\x86_64\\initramfs-linux-libre.img"
782 elif [ -e (loop)/syslinux/alt0/full.cz ]; then
783 vt_add_replace_file 0 "EFI\\BOOT\\full.cz"
784 set FirstTryBootFile='@EFI@BOOT@grubx64.efi'
786 elif vt_str_begin "$vt_volume_id" "SolusLive"; then
787 vt_add_replace_file 0 "initrd"
793 vt_linux_chain_data "${1}${chosen_path}"
795 if [ -n "$LoadIsoEfiDriver" -a $vt_chosen_size -LT 104857600 ]; then
796 if [ -f (loop)/efi/clover/cloverx64.efi ]; then
797 unset LoadIsoEfiDriver
801 if [ -n "$vtoy_chain_mem_addr" ]; then
802 ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
806 if vt_check_mode 3 "$vt_chosen_name"; then
808 elif vt_str_begin "$vt_volume_id" "HOLO_"; then
809 if [ -d (loop)/loader/entries ]; then
812 elif vt_str_begin "$vt_volume_id" "KRD"; then
813 if [ -f (loop)/boot/grub/grub.cfg.sig ]; then
818 if [ -n "$vtGrub2Mode" ]; then
821 if [ "$VTOY_EFI_ARCH" != "mips" ]; then
822 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi fallback env_param=${env_param} isoefi=${LoadIsoEfiDriver} FirstTry=${FirstTryBootFile} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
828 set vtback_root=$root
830 set vtback_theme=$theme
833 vt_trailer_cpio "$vtoy_iso_part" "$vt_chosen_path" noinit
834 vt_set_boot_opt rdinit=/vtoy/vtoy
837 set vtback_cfg_find=0
838 for cfg in "/boot/grub/grub.cfg" "/EFI/BOOT/grub.cfg" "/EFI/debian/grub.cfg" "EFI/boot/grub.cfg" "efi/boot/grub.cfg" "/grub/grub.cfg" "EFI/BOOT/BOOTX64.conf"; do
839 if [ -e "$cfg" ]; then
840 set vtback_cfg_find=1
845 if [ $vtback_cfg_find -eq 0 ]; then
846 if [ -f (loop)/loader/loader.conf -a -d (loop)/loader/entries ]; then
847 if vt_str_begin "$vt_volume_id" "HOLO_"; then
849 vt_systemd_menu (loop,2) vt_sys_menu_mem
851 vt_systemd_menu (loop) vt_sys_menu_mem
853 set vtback_cfg_find=1
854 configfile "mem:${vt_sys_menu_mem_addr}:size:${vt_sys_menu_mem_size}"
858 if [ $vtback_cfg_find -eq 0 ]; then
859 if [ -f (loop)/boot/isolinux/syslnx64.cfg ]; then
860 syslinux_configfile (loop)/boot/isolinux/syslnx64.cfg
861 set vtback_cfg_find=1
865 if [ "$vtback_cfg_find" = "0" ]; then
867 echo "No bootfile found for UEFI!"
868 echo "Maybe the image does not support $VTOY_EFI_ARCH UEFI"
874 set root=$vtback_root
875 set theme=$vtback_theme
879 echo "chain empty failed"
884 function uefi_unix_menu_func {
885 ventoy_unix_comm_proc $1 "${chosen_path}"
887 if [ -n "$vtoy_chain_mem_addr" ]; then
888 ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
890 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi env_param=${env_param} isoefi=${LoadIsoEfiDriver} FirstTry=${FirstTryBootFile} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
893 echo "chain empty failed"
898 function ventoy_reset_nojoliet {
899 if vt_str_begin "$vt_volume_id" "ARCARESCUE"; then
900 vt_iso9660_nojoliet 1
902 vt_iso9660_nojoliet 0
905 vt_append_extra_sector 0
908 function uefi_iso_menu_func {
910 if [ -d (loop)/ ]; then
914 if [ -n "$vtisouefi" ]; then
915 set LoadIsoEfiDriver=on
917 elif vt_check_mode 2 "$vt_chosen_name"; then
918 set LoadIsoEfiDriver=on
920 unset LoadIsoEfiDriver
924 vt_select_auto_install "${chosen_path}"
925 vt_select_persistence "${chosen_path}"
927 if vt_is_udf "${1}${chosen_path}"; then
928 set ventoy_fs_probe=udf
930 set ventoy_fs_probe=iso9660
931 ventoy_reset_nojoliet
933 # Lenovo EasyStartup need an addional sector for boundary check
934 if vt_str_begin "$vt_volume_id" "EasyStartup"; then
935 vt_skip_svd "${vtoy_iso_part}${vt_chosen_path}"
936 vt_append_extra_sector 1
940 loopback loop "${1}${chosen_path}"
943 if [ -d (loop)/EFI ]; then
945 elif [ -d (loop)/efi ]; then
951 if [ -n "$vtcompat" ]; then
952 set ventoy_compatible=YES
954 elif vt_check_mode 1 "$vt_chosen_name"; then
955 set ventoy_compatible=YES
957 vt_check_compatible (loop)
960 if vt_need_secondary_menu "$vt_chosen_name"; then
961 vt_show_secondary_menu "$vt_chosen_path" "$vtoy_os" $vt_chosen_size
962 if vt_check_mode 0 "$vt_chosen_name"; then
963 uefi_iso_memdisk $vtoy_iso_part "$vt_chosen_path"
964 vt_secondary_recover_mode
969 vt_img_sector "${1}${chosen_path}"
971 if [ "$ventoy_fs_probe" = "iso9660" ]; then
972 vt_select_conf_replace "${1}" "${chosen_path}"
975 if [ "$vtoy_os" = "Windows" ]; then
976 vt_check_compatible_pe (loop)
977 uefi_windows_menu_func "$1" "${chosen_path}"
978 elif [ "$vtoy_os" = "Unix" ]; then
979 uefi_unix_menu_func "$1" "${chosen_path}"
981 vt_check_compatible_linux (loop)
982 uefi_linux_menu_func "$1" "${chosen_path}"
986 vt_secondary_recover_mode
989 function uefi_iso_memdisk {
990 echo 'Loading ISO file to memory ...'
991 vt_load_img_memdisk "${1}${2}" vtoy_iso_buf
994 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi memdisk env_param=${env_param} isoefi=${LoadIsoEfiDriver} ${vtdebug_flag} mem:${vtoy_iso_buf_addr}:size:${vtoy_iso_buf_size}
1000 function vtoy_windows_wimboot {
1001 if [ -f (loop)/x86/sources/boot.wim -a -f (loop)/x64/sources/boot.wim ]; then
1002 vt_sel_wimboot vtoy_wimboot_bit
1003 if [ "$vtoy_wimboot_bit" = "32" ]; then
1004 set vtoy_wimboot_prefix=(loop)/x86
1006 set vtoy_wimboot_prefix=(loop)/x64
1009 set vtoy_wimboot_prefix=(loop)
1010 if vt_is_pe64 $vtoy_wimboot_prefix/setup.exe; then
1011 set vtoy_wimboot_bit=64
1013 set vtoy_wimboot_bit=32
1017 if [ -n "${vtdebug_flag}" ]; then
1018 echo vtoy_wimboot_prefix=$vtoy_wimboot_prefix vtoy_wimboot_bit=$vtoy_wimboot_bit vt_wimkernel=$vt_wimkernel
1021 vt_windows_wimboot_data "$vtoy_wimboot_prefix/sources/boot.wim" vtoy_init_exe vtoy_wim_bit
1023 if [ "$grub_platform" = "pc" ]; then
1024 linux16 "$vtoy_path/$vt_wimkernel" quiet
1027 vt_set_wim_load_prompt 1 "Loading files......"
1028 initrd16 newc:winpeshl.exe:mem:${vtoy_wimboot_mem_addr}:size:${vtoy_wimboot_mem_size} \
1029 newc:vtoy_wimboot:$vtoy_wimboot_prefix/boot/bcd \
1030 newc:bcd:$vtoy_wimboot_prefix/boot/bcd \
1031 newc:boot.sdi:$vtoy_wimboot_prefix/boot/boot.sdi \
1032 newc:boot.wim:$vtoy_wimboot_prefix/sources/boot.wim
1033 vt_set_wim_load_prompt 0
1036 vt_set_wim_load_prompt 1 "Loading files......"
1037 vt_load_file_to_mem "nodecompress" $vtoy_wimboot_prefix/sources/boot.wim vtoy_wimfile_mem
1038 vt_set_wim_load_prompt 0
1040 if [ $? -eq 0 ]; then
1041 set vtoy_wimfile_path=mem:${vtoy_wimfile_mem_addr}:size:${vtoy_wimfile_mem_size}
1043 set vtoy_wimfile_path=$vtoy_wimboot_prefix/sources/boot.wim
1047 chainloader "$vtoy_path/$vt_wimkernel" quiet \
1048 "vf=winpeshl.exe:mem:${vtoy_wimboot_mem_addr}:size:${vtoy_wimboot_mem_size}" \
1049 "vf=vtoy_wimboot:$vtoy_wimboot_prefix/boot/bcd" \
1050 "vf=bcd:$vtoy_wimboot_prefix/boot/bcd" \
1051 "vf=boot.sdi:$vtoy_wimboot_prefix/boot/boot.sdi" \
1052 "vf=boot.wim:$vtoy_wimfile_path" \
1053 pfsize=$vtoy_chain_file_size \
1054 pfread=$vtoy_chain_file_read
1060 function vtoy_winpe_wimboot {
1061 unset vtoy_boot_sdi_legacy
1062 unset vtoy_boot_sdi_efi
1064 set vtoy_wimboot_prefix=(loop)
1065 set vtoy_wim_path="$1"
1067 if [ -n "${vtdebug_flag}" ]; then
1068 echo "winpe_wimboot $1 $2 $3"
1071 if [ "$2" != "0" ]; then
1072 set vtoy_boot_sdi_legacy="newc:boot.sdi:$vtoy_wimboot_prefix/$2"
1073 set vtoy_boot_sdi_efi="vf=boot.sdi:$vtoy_wimboot_prefix/$2"
1076 vt_windows_wimboot_data $vtoy_wimboot_prefix/$vtoy_wim_path vtoy_init_exe vtoy_wim_bit
1078 if [ "$grub_platform" = "pc" ]; then
1079 linux16 "$vtoy_path/$vt_wimkernel" quiet
1082 vt_set_wim_load_prompt 1 "Loading files......"
1083 initrd16 newc:$vtoy_init_exe:mem:${vtoy_wimboot_mem_addr}:size:${vtoy_wimboot_mem_size} \
1084 newc:vtoy_wimboot:$vtoy_path/$vt_wimkernel \
1085 newc:bootmgr.exe:mem:${vtoy_pe_bootmgr_mem_addr}:size:${vtoy_pe_bootmgr_mem_size} \
1086 newc:bcd:mem:${vtoy_pe_bcd_mem_addr}:size:${vtoy_pe_bcd_mem_size} \
1087 $vtoy_boot_sdi_legacy \
1088 newc:boot.wim:$vtoy_wimboot_prefix/$vtoy_wim_path
1089 vt_set_wim_load_prompt 0
1092 if [ "$VTOY_EFI_ARCH" = "x64" -a "$vtoy_wim_bit" = "32" ]; then
1093 echo -e "\nThis is 32bit Windows and does NOT support x86_64 UEFI firmware.\n"
1094 echo -e "这是32位的 Windows 系统,不支持当前的64位 UEFI 环境。\n"
1097 vt_set_wim_load_prompt 1 "Loading files......"
1098 vt_load_file_to_mem "nodecompress" $vtoy_wimboot_prefix/$vtoy_wim_path vtoy_wimfile_mem
1099 vt_set_wim_load_prompt 0
1101 if [ $? -eq 0 ]; then
1102 set vtoy_wimfile_path=mem:${vtoy_wimfile_mem_addr}:size:${vtoy_wimfile_mem_size}
1104 set vtoy_wimfile_path=$vtoy_wimboot_prefix/$vtoy_wim_path
1107 unset vtoy_boot_efi_path
1108 if [ -F (loop)/efi/boot/boot${VTOY_EFI_ARCH}.efi ]; then
1109 set vtoy_boot_efi_path="vf=bootx64.efi:(loop)/efi/boot/boot${VTOY_EFI_ARCH}.efi"
1113 chainloader "$vtoy_path/$vt_wimkernel" quiet \
1114 "vf=$vtoy_init_exe:mem:${vtoy_wimboot_mem_addr}:size:${vtoy_wimboot_mem_size}" \
1115 "vf=vtoy_wimboot:$vtoy_path/$vt_wimkernel" \
1116 "vf=bcd:mem:${vtoy_pe_bcd_mem_addr}:size:${vtoy_pe_bcd_mem_size}" \
1117 "$vtoy_boot_sdi_efi" \
1118 "$vtoy_boot_efi_path" \
1119 "vf=boot.wim:$vtoy_wimfile_path" \
1120 pfsize=$vtoy_chain_file_size \
1121 pfread=$vtoy_chain_file_read
1127 function vtoy_wimboot_func {
1128 if [ "$grub_platform" = "pc" ]; then
1129 set vt_wimkernel=wimboot.x86_64.xz
1131 if [ "$grub_cpu" = "i386" ]; then
1132 set vt_wimkernel=wimboot.i386.efi.xz
1134 set vt_wimkernel=wimboot.x86_64.xz
1138 if vt_is_standard_winiso (loop); then
1139 echo -e "\n==================== VENTOY WIMBOOT ==================\n"
1140 vtoy_windows_wimboot
1142 vt_sel_winpe_wim (loop)
1143 if [ -n "$vtoy_pe_wim_path" ]; then
1144 echo -e "\n==================== VENTOY WIMBOOT ==================\n"
1147 vt_load_file_to_mem "auto" $vtoy_path/common_bcd.xz vtoy_pe_bcd_mem
1150 for vsdi in "boot/boot.sdi" "2K10/FONTS/boot.sdi" "SSTR/boot.sdi" "ISPE/BOOT.SDI" \
1151 "boot/uqi.sdi" "ISYL/boot.sdi" "WEPE/WEPE.SDI" ; do
1152 if [ -F "(loop)/$vsdi" ]; then
1153 set vt_sdi_path=$vsdi
1158 if [ "$grub_platform" = "pc" ]; then
1159 vt_load_file_to_mem "auto" $vtoy_path/common_bootmgr.xz vtoy_pe_bootmgr_mem
1160 vtoy_winpe_wimboot "$vtoy_pe_wim_path" "$vt_sdi_path" 1
1162 vtoy_winpe_wimboot "$vtoy_pe_wim_path" "$vt_sdi_path" 0
1170 function legacy_windows_menu_func {
1173 unset vt_cur_wimboot_mode
1174 if vt_check_mode 4 "$vt_chosen_name"; then
1175 set vt_cur_wimboot_mode=1
1178 if [ "$ventoy_compatible" = "NO" -o "$vt_cur_wimboot_mode" = "1" ]; then
1179 if [ "$ventoy_fs_probe" = "iso9660" ]; then
1181 vt_iso9660_nojoliet 1
1182 loopback loop "$1$2"
1185 for file in "boot/bcd" "/efi/microsoft/boot/bcd" "SSTR/BCD" "boot/bce"; do
1186 vt_windows_collect_wim_patch bcd (loop)/$file
1189 distro_specify_wim_patch
1191 vt_windows_count_wim_patch vt_wim_cnt
1192 if [ $vt_wim_cnt -eq 0 ]; then
1193 distro_specify_wim_patch_phase2
1197 if [ -z "$vt_cur_wimboot_mode" ]; then
1198 locate_wim "${chosen_path}"
1202 vt_windows_chain_data "${1}${chosen_path}"
1205 if [ "$vt_cur_wimboot_mode" = "1" ]; then
1209 if [ -n "$vtoy_chain_mem_addr" ]; then
1210 ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
1211 if [ "$ventoy_compatible" = "NO" ]; then
1212 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1214 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} ibft mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1218 echo "chain empty failed"
1223 function legacy_linux_menu_func {
1224 if [ "$ventoy_compatible" = "NO" ]; then
1226 if [ "$ventoy_fs_probe" = "udf" ]; then
1228 set ventoy_fs_probe=iso9660
1229 loopback loop "$1$2"
1233 if vt_syslinux_need_nojoliet "$1$2"; then
1234 vt_iso9660_nojoliet 1
1236 loopback loop "$1$2"
1239 vt_load_cpio $vtoy_path "$2" "$1" "busybox=$ventoy_busybox_ver"
1241 vt_linux_clear_initrd
1243 if [ -d (loop)/pmagic ]; then
1244 vt_linux_specify_initrd_file /pmagic/initrd.img
1246 for dir in "isolinux" "boot/isolinux" "boot/x86_64/loader" "syslinux" "boot/syslinux"; do
1247 if [ -d (loop)/$dir ]; then
1248 vt_linux_parse_initrd_isolinux (loop)/$dir/
1253 # special process for special distros
1255 if [ -d (loop)/arch/boot/syslinux ]; then
1256 vt_linux_parse_initrd_isolinux (loop)/arch/boot/syslinux/ /arch/
1257 vt_linux_parse_initrd_isolinux (loop)/arch/boot/syslinux/ /arch/boot/syslinux/
1258 elif [ -d (loop)/anarchy/boot/syslinux ]; then
1259 vt_linux_parse_initrd_isolinux (loop)/anarchy/boot/syslinux/ /anarchy/
1262 elif [ -d (loop)/manjaro ]; then
1263 if [ -e (loop)/boot/grub/kernels.cfg ]; then
1264 vt_linux_parse_initrd_grub file (loop)/boot/grub/kernels.cfg
1266 elif [ -e (loop)/boot/grub/grub.cfg ]; then
1267 vt_linux_parse_initrd_grub file (loop)/boot/grub/grub.cfg
1270 distro_specify_initrd_file
1272 vt_linux_initrd_count vtcount
1273 if [ $vtcount -eq 0 ]; then
1274 if [ -d (loop)/rancheros ]; then
1275 vt_linux_parse_initrd_isolinux (loop)/boot/ /boot/isolinux/
1278 distro_specify_initrd_file_phase2
1284 vt_linux_chain_data "${1}${chosen_path}"
1287 if [ -n "$vtoy_chain_mem_addr" ]; then
1289 if vt_check_mode 3 "$vt_chosen_name"; then
1291 elif vt_str_begin "$vt_volume_id" "HOLO_"; then
1292 if [ -d (loop)/loader/entries ]; then
1297 if [ -n "$vtGrub2Mode" ]; then
1298 ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
1302 set vtback_root=$root
1304 set vtback_theme=$theme
1307 vt_trailer_cpio "$vtoy_iso_part" "$vt_chosen_path" noinit
1308 vt_set_boot_opt rdinit=/vtoy/vtoy
1311 set vtback_cfg_find=0
1312 for cfg in "/boot/grub/grub.cfg" "/EFI/BOOT/grub.cfg" "/EFI/debian/grub.cfg" "EFI/boot/grub.cfg" "efi/boot/grub.cfg" "/grub/grub.cfg" "EFI/BOOT/BOOTX64.conf"; do
1313 if [ -e "$cfg" ]; then
1314 set vtback_cfg_find=1
1319 if [ $vtback_cfg_find -eq 0 ]; then
1320 if [ -f (loop)/loader/loader.conf -a -d (loop)/loader/entries ]; then
1321 if vt_str_begin "$vt_volume_id" "HOLO_"; then
1323 vt_systemd_menu (loop,2) vt_sys_menu_mem
1325 vt_systemd_menu (loop) vt_sys_menu_mem
1327 set vtback_cfg_find=1
1328 configfile "mem:${vt_sys_menu_mem_addr}:size:${vt_sys_menu_mem_size}"
1332 if [ $vtback_cfg_find -eq 0 ]; then
1333 if [ -f (loop)/boot/isolinux/syslnx64.cfg ]; then
1334 syslinux_configfile (loop)/boot/isolinux/syslnx64.cfg
1335 set vtback_cfg_find=1
1340 set root=$vtback_root
1341 set theme=$vtback_theme
1345 ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
1346 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1350 echo "chain empty failed"
1356 function legacy_unix_menu_func {
1357 ventoy_unix_comm_proc $1 "${chosen_path}"
1359 if [ -n "$vtoy_chain_mem_addr" ]; then
1360 #ventoy_acpi_param ${vtoy_chain_mem_addr} 2048
1361 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1364 echo "chain empty failed"
1370 function legacy_iso_menu_func {
1372 if [ -d (loop)/ ]; then
1376 set chosen_path="$2"
1378 vt_select_auto_install "${chosen_path}"
1379 vt_select_persistence "${chosen_path}"
1381 if vt_is_udf "${1}${chosen_path}"; then
1382 set ventoy_fs_probe=udf
1384 set ventoy_fs_probe=iso9660
1385 ventoy_reset_nojoliet
1388 loopback loop "${1}${chosen_path}"
1392 if [ -n "$vtcompat" ]; then
1393 set ventoy_compatible=YES
1395 elif vt_check_mode 1 "$vt_chosen_name"; then
1396 set ventoy_compatible=YES
1398 vt_check_compatible (loop)
1401 if vt_need_secondary_menu "$vt_chosen_name"; then
1402 vt_show_secondary_menu "$vt_chosen_path" "$vtoy_os" $vt_chosen_size
1403 if vt_check_mode 0 "$vt_chosen_name"; then
1404 legacy_iso_memdisk $vtoy_iso_part "$vt_chosen_path"
1405 vt_secondary_recover_mode
1410 vt_img_sector "${1}${chosen_path}"
1412 if [ "$ventoy_fs_probe" = "iso9660" ]; then
1413 vt_select_conf_replace "${1}" "${chosen_path}"
1416 if [ "$vtoy_os" = "Windows" ]; then
1417 vt_check_compatible_pe (loop)
1418 legacy_windows_menu_func "$1" "${chosen_path}"
1419 elif [ "$vtoy_os" = "Unix" ]; then
1420 legacy_unix_menu_func "$1" "${chosen_path}"
1422 vt_check_compatible_linux (loop)
1423 legacy_linux_menu_func "$1" "${chosen_path}"
1425 vt_secondary_recover_mode
1428 function legacy_iso_memdisk {
1430 linux16 $vtoy_path/memdisk iso raw
1431 echo "Loading ISO file to memory ..."
1437 function iso_endless_os_proc {
1438 if [ -d (loop)/ ]; then
1442 loopback loop "${1}${2}"
1443 vt_img_sector "${1}${2}"
1445 vt_load_cpio $vtoy_path "$2" "$1" "busybox=$ventoy_busybox_ver"
1446 vt_trailer_cpio "$1" "$2" noinit
1450 vt_set_boot_opt '@kparams' rdinit=/vtoy/vtoy
1453 set ventoy_bls_bootdev=/boot
1454 set ventoy_loading_tip="Loading files ......"
1457 configfile (loop)/endless/grub/grub.cfg
1460 unset ventoy_bls_bootdev
1461 unset ventoy_loading_tip
1467 function ventoy_iso_busybox_ver {
1469 if [ "$VTOY_EFI_ARCH" = "aa64" ]; then
1470 set ventoy_busybox_ver=a64
1471 elif [ "$VTOY_EFI_ARCH" = "mips" ]; then
1472 set ventoy_busybox_ver=m64
1474 set ventoy_busybox_ver=32
1476 #special process for deepin-live iso
1477 if [ "$vt_chosen_size" = "403701760" ]; then
1478 if vt_str_str "$vt_chosen_path" "/deepin-live"; then
1479 set ventoy_busybox_ver=64
1481 elif vt_str_begin "$vt_volume_id" "PHOTON_"; then
1482 set ventoy_busybox_ver=64
1483 elif vt_str_begin "$vt_volume_id" "smgl-test-quinq-x86_64"; then
1484 set ventoy_busybox_ver=64
1485 elif vt_str_begin "$vt_volume_id" "LDiagBootable"; then
1486 set ventoy_busybox_ver=64
1493 function iso_common_menuentry {
1497 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
1499 vt_parse_iso_volume "${vtoy_iso_part}${vt_chosen_path}" vt_system_id vt_volume_id vt_volume_space
1500 if [ $vt_volume_space -NE $vt_chosen_size ]; then
1501 vt_mod $vt_chosen_size 2048 vt_chosen_size_mod
1502 if [ $vt_chosen_size_mod -ne 0 ]; then
1503 echo -e "\n $vt_volume_space $vt_chosen_size $vt_chosen_size_mod\n"
1504 echo -e "\n The size of the iso file \"$vt_chosen_size\" is invalid. File corrupted ?\n"
1505 echo -e " 此ISO文件的大小 \"$vt_chosen_size\" 有问题,请确认文件是否损坏。\n"
1506 echo -en "\n$VTLANG_ENTER_CONTINUE ..."
1511 if vt_check_password "${vt_chosen_path}"; then
1515 if ventoy_vcfg_proc "${vt_chosen_path}"; then
1519 if vt_str_begin "$vt_volume_id" "Avira"; then
1520 vt_skip_svd "${vtoy_iso_part}${vt_chosen_path}"
1523 ventoy_iso_busybox_ver
1525 #special process for Endless OS
1526 if vt_str_begin "$vt_volume_id" "Endless-OS"; then
1527 iso_endless_os_proc $vtoy_iso_part "$vt_chosen_path"
1528 elif vt_str_begin "$vt_volume_id" "TENS-Public"; then
1533 # auto memdisk mode for some special ISO files
1534 vt_iso_vd_id_parse "${vtoy_iso_part}${vt_chosen_path}"
1536 if vt_check_mode 0 "$vt_chosen_name"; then
1539 if [ "$grub_platform" = "pc" ]; then
1540 if vt_iso_vd_id_begin 1 0 "Memtest86+"; then
1542 elif vt_iso_vd_id_begin 0 1 "KolibriOS"; then
1548 if [ $vt_chosen_size -LE 67108864 ]; then
1549 if vt_str_begin "$vt_chosen_name" "iKuai"; then
1557 if [ "$grub_platform" = "pc" ]; then
1558 if [ -n "$vtMemDiskBoot" ]; then
1559 legacy_iso_memdisk $vtoy_iso_part "$vt_chosen_path"
1561 legacy_iso_menu_func $vtoy_iso_part "$vt_chosen_path"
1564 if [ -n "$vtMemDiskBoot" ]; then
1565 uefi_iso_memdisk $vtoy_iso_part "$vt_chosen_path"
1567 uefi_iso_menu_func $vtoy_iso_part "$vt_chosen_path"
1572 function miso_common_menuentry {
1573 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
1575 if vt_check_password "${vt_chosen_path}"; then
1579 echo "memdisk mode boot for $vt_chosen_path"
1583 if [ "$grub_platform" = "pc" ]; then
1584 legacy_iso_memdisk $vtoy_iso_part "$vt_chosen_path"
1586 uefi_iso_memdisk $vtoy_iso_part "$vt_chosen_path"
1591 function common_unsupport_menuentry {
1592 echo -e "\n The name of the iso file could NOT contain space or non-ascii characters. \n"
1593 echo -e " 文件名中不能有中文或空格 \n"
1594 echo -en "\n$VTLANG_ENTER_EXIT ..."
1598 function miso_unsupport_menuentry {
1599 common_unsupport_menuentry
1602 function iso_unsupport_menuentry {
1603 common_unsupport_menuentry
1606 function wim_common_menuentry {
1607 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
1609 if vt_check_password "${vt_chosen_path}"; then
1613 if ventoy_vcfg_proc "${vt_chosen_path}"; then
1617 if vt_wim_check_bootable "${vtoy_iso_part}${vt_chosen_path}"; then
1618 vt_wim_chain_data "${vtoy_iso_part}${vt_chosen_path}"
1620 echo -e "\n This is NOT a bootable WIM file. \n"
1621 echo -e " 这不是一个可启动的 WIM 文件。\n"
1626 if [ -n "$vtoy_chain_mem_addr" ]; then
1627 if [ "$grub_platform" = "pc" ]; then
1628 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1631 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi env_param=${env_param} isoefi=${LoadIsoEfiDriver} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1636 echo "chain empty failed"
1641 function wim_unsupport_menuentry {
1642 common_unsupport_menuentry
1645 function efi_common_menuentry {
1646 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
1648 if vt_check_password "${vt_chosen_path}"; then
1652 if ventoy_vcfg_proc "${vt_chosen_path}"; then
1657 if vt_is_vlnk_name "${vt_chosen_path}"; then
1658 vt_get_vlnk_dst "${vtoy_iso_part}${vt_chosen_path}" vt_vlnk_dst
1659 if [ -z "$vt_vlnk_dst" ]; then
1660 echo -e "\n### VLNK FILE NOT FOUND ###\n### VLNK 文件不存在 ###\n"
1665 vt_vlnk_dst="${vtoy_iso_part}${vt_chosen_path}"
1672 #first try with chainload
1674 set root=$vtoy_iso_part
1675 chainloader "${vt_vlnk_dst}"
1680 vt_concat_efi_iso "${vt_vlnk_dst}" vtoy_iso_buf
1681 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi memdisk env_param=${env_param} dotefi isoefi=on ${vtdebug_flag} mem:${vtoy_iso_buf_addr}:size:${vtoy_iso_buf_size}
1687 function efi_unsupport_menuentry {
1688 common_unsupport_menuentry
1691 function vhdboot_common_func {
1692 vt_patch_vhdboot "$1"
1696 if [ -n "$vtoy_vhd_buf_addr" ]; then
1697 if [ "$grub_platform" = "pc" ]; then
1699 linux16 $vtoy_path/memdisk iso raw
1700 initrd16 mem:${vtoy_vhd_buf_addr}:size:${vtoy_vhd_buf_size}
1705 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi memdisk env_param=${env_param} isoefi=${LoadIsoEfiDriver} ${vtdebug_flag} mem:${vtoy_vhd_buf_addr}:size:${vtoy_vhd_buf_size}
1710 echo "Please put the right ventoy_vhdboot.img file to the 1st partition"
1715 function vhd_common_menuentry {
1716 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
1718 if vt_check_password "${vt_chosen_path}"; then
1722 if ventoy_vcfg_proc "${vt_chosen_path}"; then
1727 if vt_is_vlnk_name "${vt_chosen_path}"; then
1728 vt_get_vlnk_dst "${vtoy_iso_part}${vt_chosen_path}" vt_vlnk_dst
1729 if [ -z "$vt_vlnk_dst" ]; then
1730 echo -e "\n### VLNK FILE NOT FOUND ###\n### VLNK 文件不存在 ###\n"
1735 vt_vlnk_dst="${vt_chosen_path}"
1736 if [ "$VTOY_VHD_NO_WARNING" != "1" ]; then
1737 if [ "$vtoy_iso_fs" != "ntfs" ]; then
1738 echo -e "!!! WARNING !!!\n"
1739 echo -e "\nPartition1 ($vtoy_iso_fs) is NOT ntfs, the VHD(x) file may not boot normally \n"
1740 echo -e "\nVHD(x) 文件所在分区不是 ntfs 格式, 可能无法正常启动 \n\n"
1741 echo -en "\n$VTLANG_ENTER_CONTINUE ..."
1747 vhdboot_common_func "${vt_vlnk_dst}"
1750 function vhd_unsupport_menuentry {
1751 common_unsupport_menuentry
1754 function vtoyboot_common_func {
1758 vt_get_vtoy_type "${1}" vtoytype parttype AltBootPart
1760 if vt_str_begin $vtoytype vhd; then
1762 elif [ "$vtoytype" = "raw" ]; then
1764 elif [ "$vtoytype" = "vdi" ]; then
1768 if [ $vtoysupport -eq 1 ]; then
1769 if [ "$grub_platform" = "pc" ]; then
1770 if [ "$parttype" = "gpt" -a $AltBootPart -eq 0 ]; then
1771 echo "The OS in the vdisk was created in UEFI mode, but current is Legacy BIOS mode."
1772 echo "虚拟磁盘内的系统是在UEFI模式下创建的,而当前系统是Legacy BIOS模式,可能无法正常启动。"
1776 if [ "$parttype" = "mbr" -a $AltBootPart -eq 0 ]; then
1777 echo "The OS in the vdisk was created in Legacy BIOS mode, but current is UEFI mode."
1778 echo "虚拟磁盘内的系统是在Legacy BIOS模式下创建的,而当前系统是UEFI模式,可能无法正常启动。"
1783 vt_img_sector "${1}"
1784 vt_raw_chain_data "${1}"
1788 if [ -n "$vtoy_chain_mem_addr" ]; then
1789 if [ "$grub_platform" = "pc" ]; then
1790 vt_acpi_param ${vtoy_chain_mem_addr} 512
1791 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} bios80 sector512 mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1794 if vt_check_secureboot_var; then
1795 vt_acpi_param ${vtoy_chain_mem_addr} 512
1798 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi sector512 env_param=${ventoy_env_param} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
1803 echo "chain empty failed!"
1807 echo "Unsupported vtoy type $vtoytype"
1812 function vtoy_common_menuentry {
1813 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
1815 if vt_check_password "${vt_chosen_path}"; then
1819 if ventoy_vcfg_proc "${vt_chosen_path}"; then
1824 if vt_is_vlnk_name "${vt_chosen_path}"; then
1825 vt_get_vlnk_dst "${vtoy_iso_part}${vt_chosen_path}" vt_vlnk_dst
1826 if [ -z "$vt_vlnk_dst" ]; then
1827 echo -e "\n### VLNK FILE NOT FOUND ###\n### VLNK 文件不存在 ###\n"
1832 vt_vlnk_dst="${vtoy_iso_part}${vt_chosen_path}"
1835 vtoyboot_common_func "${vt_vlnk_dst}"
1838 function vtoy_unsupport_menuentry {
1839 common_unsupport_menuentry
1843 #============================================================#
1844 # IMG file boot process #
1845 #============================================================#
1848 function only_uefi_tip {
1849 echo -e "\n This IMG file is only supported in UEFI mode. \n"
1850 echo -en "\n$VTLANG_ENTER_EXIT ..."
1854 function ventoy_img_easyos {
1855 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
1856 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
1858 loopback easysfs (vtimghd,1)/easy.sfs
1859 vt_get_lib_module_ver (easysfs) /lib/modules/ vt_module_ver
1861 if [ -n "$vt_module_ver" ]; then
1862 for mod in "kernel/drivers/md/dm-mod.ko" "kernel/drivers/dax/dax.ko"; do
1863 if [ -e (easysfs)/lib/modules/$vt_module_ver/$mod ]; then
1864 vt_img_extra_initrd_append (easysfs)/lib/modules/$vt_module_ver/$mod
1872 vt_set_boot_opt rdinit=/vtoy/vtoy
1875 syslinux_configfile (vtimghd,1)/syslinux.cfg
1882 function ventoy_img_easyos2 {
1883 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
1884 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
1886 if [ -e (vtimghd,2)/easyos/easy.sfs ]; then
1887 loopback easysfs (vtimghd,2)/easyos/easy.sfs
1888 elif [ -d (vtimghd,2)/easyos/releases ]; then
1889 vt_fs_enum_1st_dir (vtimghd,2) /easyos/releases/ vt_dir_name
1890 loopback easysfs (vtimghd,2)/easyos/releases/$vt_dir_name/easy.sfs
1893 vt_get_lib_module_ver (easysfs) /lib/modules/ vt_module_ver
1895 if [ -n "$vt_module_ver" ]; then
1896 for mod in "kernel/drivers/md/dm-mod.ko" "kernel/drivers/dax/dax.ko"; do
1897 if [ -e (easysfs)/lib/modules/$vt_module_ver/$mod ]; then
1898 vt_img_extra_initrd_append (easysfs)/lib/modules/$vt_module_ver/$mod
1906 vt_set_boot_opt rdinit=/vtoy/vtoy
1909 vt_limine_menu (vtimghd,1)/limine.cfg vt_sys_menu_mem
1910 configfile "mem:${vt_sys_menu_mem_addr}:size:${vt_sys_menu_mem_size}"
1917 function ventoy_img_volumio {
1918 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
1919 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
1924 vt_set_boot_opt rdinit=/vtoy/vtoy imgpart=/dev/ventoy2 bootpart=/dev/ventoy1
1927 syslinux_configfile (vtimghd,1)/syslinux.cfg
1933 function ventoy_img_openelec {
1936 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
1937 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
1939 loopback vtloopex $vtoy_efi_part/ventoy/vtloopex.cpio
1940 vt_img_extra_initrd_append (vtloopex)/$elec_ver/vtloopex.tar.xz
1945 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=$elec_ver
1948 set root=(vtimghd,1)
1949 syslinux_configfile (vtimghd,1)/syslinux.cfg
1953 loopback -d vtloopex
1957 function ventoy_img_freedombox {
1958 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
1959 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
1961 vt_get_lib_module_ver (vtimghd,1) /lib/modules/ vt_module_ver
1962 if [ -n "$vt_module_ver" ]; then
1963 vt_img_extra_initrd_append (vtimghd,1)/lib/modules/$vt_module_ver/kernel/drivers/md/dm-mod.ko
1969 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=freedombox
1972 configfile (vtimghd,1)/boot/grub/grub.cfg
1978 function ventoy_img_paldo {
1979 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
1980 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
1985 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=paldo
1988 vt_fs_enum_1st_file (vtimghd,1) /loader/entries/ vt_paldo_entry_conf
1989 vt_file_basename $vt_paldo_entry_conf vtPaldoVer
1991 echo loading file...
1992 linux (vtimghd,1)/linux-${vtPaldoVer} root=/dev/ventoy1 rootfstype=vfat
1993 initrd (vtimghd,1)/initramfs-${vtPaldoVer}
2000 function ventoy_img_ubos {
2001 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
2002 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2004 vt_get_lib_module_ver (vtimghd,3) /lib/modules/ vt_module_ver
2005 if [ -n "$vt_module_ver" ]; then
2006 vt_img_extra_initrd_append (vtimghd,3)/lib/modules/$vt_module_ver/kernel/drivers/md/dm-mod.ko.xz
2012 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=ubos
2015 echo loading file...
2016 linux (vtimghd,2)/vmlinuz-linux root=/dev/ventoy3 rw
2017 initrd (vtimghd,2)/initramfs-linux.img
2024 function ventoy_img_recalbox {
2025 if [ $vtoy_img_max_part_end -GT $vt_chosen_size ]; then
2026 echo -e "\nPlease extend the img file size before boot it. \n"
2031 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
2032 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2034 if [ -e (vtimghd,1)/boot/recalbox ]; then
2035 loopback recalbox (vtimghd,1)/boot/recalbox
2036 vt_get_lib_module_ver (recalbox) /lib/modules/ vt_module_ver
2037 if [ -n "$vt_module_ver" ]; then
2038 vt_img_extra_initrd_append (recalbox)/lib/modules/$vt_module_ver/kernel/drivers/md/dm-mod.ko
2045 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=recalbox
2048 set root=(vtimghd,1)
2049 configfile (vtimghd,1)/boot/grub/grub.cfg
2055 function ventoy_img_esysrescue {
2056 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
2057 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2062 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=esysrescue
2065 set root=(vtimghd,1)
2066 configfile (vtimghd,1)/boot/grub/grub.cfg
2072 function ventoy_img_batocera {
2073 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
2074 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2079 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=batocera
2082 set root=(vtimghd,1)
2083 syslinux_configfile (vtimghd,1)/boot/syslinux/syslinux.cfg
2089 function ventoy_img_openwrt {
2090 if [ -e (vtimghd,2)/lib64 ]; then
2091 set ventoy_busybox_ver=64
2094 vt_fs_enum_1st_dir (vtimghd,2) /lib/modules/ vt_dir_name
2096 if [ -f (vtimghd,2)/lib/modules/$vt_dir_name/dm-mod.ko ]; then
2097 set openwrt_plugin_need=0
2098 vt_img_extra_initrd_append (vtimghd,2)/lib/modules/$vt_dir_name/dm-mod.ko
2099 if [ -f (vtimghd,2)/lib/modules/$vt_dir_name/dax.ko ]; then
2100 vt_img_extra_initrd_append (vtimghd,2)/lib/modules/$vt_dir_name/dax.ko
2103 set openwrt_plugin_need=1
2104 if [ ! -f ${vtoy_iso_part}/ventoy/ventoy_openwrt.xz ]; then
2106 echo -e "\n ventoy_openwrt.xz not found. Please refer https://www.ventoy.net/en/doc_openwrt.html.\n"
2107 echo -e " 未找到 ventoy_openwrt.xz 文件。请参考 https://www.ventoy.net/cn/doc_openwrt.html\n"
2108 echo -en "\n$VTLANG_ENTER_EXIT ..."
2115 if vt_img_check_range "${vtoy_iso_part}${vt_chosen_path}"; then
2119 echo -e "\n IMG file need processed. Please refer https://www.ventoy.net/en/doc_openwrt.html.\n"
2120 echo -e " 此 IMG 文件必须处理之后才能支持。请参考 https://www.ventoy.net/cn/doc_openwrt.html\n"
2121 echo -e "\n press ENTER to exit (请按 回车 键返回) ..."
2127 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
2128 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2130 if [ $openwrt_plugin_need -eq 1 ]; then
2131 if [ -f ${vtoy_iso_part}/ventoy/ventoy_openwrt.xz ]; then
2132 vt_img_extra_initrd_append ${vtoy_iso_part}/ventoy/ventoy_openwrt.xz
2137 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=openwrt
2140 set root=(vtimghd,1)
2141 configfile (vtimghd,1)/boot/grub/grub.cfg
2147 function ventoy_img_tails {
2148 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
2149 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2154 vt_set_boot_opt rdinit=/vtoy/vtoy live-media=/dev/dm-1 ventoyos=tails
2157 set root=(vtimghd,1)
2158 configfile (vtimghd,1)/efi/debian/grub.cfg
2164 function ventoy_img_fydeos {
2165 if [ "$grub_platform" = "pc" ]; then
2170 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=64"
2171 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2176 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=fydeos
2179 set grubdisk=vtimghd
2180 set grubpartA=(vtimghd,3)
2181 set grubpartB=(vtimghd,5)
2182 set linuxpartA=(sda,3)
2183 set linuxpartB=(sda,5)
2185 set root=(vtimghd,12)
2186 configfile (vtimghd,12)/efi/boot/grub.cfg
2198 function ventoy_img_cloudready {
2199 if [ "$grub_platform" = "pc" ]; then
2204 vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=64"
2205 vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
2210 vt_set_boot_opt rdinit=/vtoy/vtoy ventoyos=cloudready
2213 set grubdisk=vtimghd
2214 set grubpartA=(vtimghd,3)
2215 set grubpartB=(vtimghd,5)
2216 set linuxpartA=(sda,3)
2217 set linuxpartB=(sda,5)
2219 set root=(vtimghd,12)
2220 configfile (vtimghd,12)/efi/boot/grub.cfg
2232 function ventoy_img_memtest86 {
2233 chainloader (vtimghd,1)/efi/boot/BOOTX64.efi
2237 function img_unsupport_tip {
2238 echo -e "\n This IMG file is NOT supported now. \n"
2239 echo -e " 当前不支持启动此 IMG 文件 \n"
2240 echo -en "\n$VTLANG_ENTER_EXIT ..."
2244 function legacy_img_memdisk {
2245 linux16 $vtoy_path/memdisk
2246 echo "Loading img file to memory ..."
2253 function img_common_menuentry {
2254 set ventoy_compatible=YES
2255 set ventoy_busybox_ver=32
2256 unset LoadIsoEfiDriver
2258 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
2260 if vt_check_password "${vt_chosen_path}"; then
2264 if ventoy_vcfg_proc "${vt_chosen_path}"; then
2268 if [ "$grub_platform" = "pc" ]; then
2269 if vt_check_mode 0 "$vt_chosen_name"; then
2270 legacy_img_memdisk $vtoy_iso_part "$vt_chosen_path"
2275 loopback vtimghd "${vtoy_iso_part}${vt_chosen_path}"
2276 vt_img_sector "${vtoy_iso_part}${vt_chosen_path}"
2278 vt_img_part_info (vtimghd)
2280 set vtback_root=$root
2283 set vtback_theme=$theme
2286 vt_img_extra_initrd_reset
2289 vt_get_fs_label (vtimghd,1) vtImgHd1Label
2291 if [ "$vtImgHd1Label" = "STATE" ]; then
2292 vt_get_fs_label (vtimghd,3) vtImgHd3Label
2293 elif [ -d (vtimghd,2)/lib ]; then
2294 vt_get_fs_label (vtimghd,2) vtImgHd2Label
2297 if [ -e (vtimghd,1)/etc/hostname ]; then
2298 vt_1st_line (vtimghd,1)/etc/hostname vtImgHostname
2301 if vt_str_begin "$vtImgHd3Label" "ROOT-"; then
2302 if [ -f (vtimghd,3)/etc/os-release.d/ID ]; then
2303 vt_1st_line (vtimghd,3)/etc/os-release.d/ID vt_release_line1
2304 if vt_str_begin "$vt_release_line1" "FydeOS"; then
2307 ventoy_img_cloudready
2309 elif [ -f (vtimghd,3)/etc/cloudready-release ]; then
2310 ventoy_img_cloudready
2311 elif [ -f (vtimghd,3)/etc/chrome_dev.conf ]; then
2312 ventoy_img_cloudready
2314 elif vt_str_begin "$vtImgHd1Label" "LAKKA"; then
2315 ventoy_img_openelec lakka
2316 elif vt_str_begin "$vtImgHd1Label" "LIBREELEC"; then
2317 ventoy_img_openelec LibreELEC
2318 elif vt_str_begin "$vtImgHd1Label" "paldo-live"; then
2320 elif vt_str_begin "$vtImgHostname" "freedombox"; then
2321 ventoy_img_freedombox
2322 elif vt_str_begin "$vtImgHd1Label" "BATOCERA"; then
2324 elif vt_str_begin "$vtImgHd1Label" "Tails"; then
2326 elif [ "$vtImgHd2Label" = "RECALBOX" -o "$vtImgHd1Label" = "RECALBOX" ]; then
2328 elif [ "$vtImgHd1Label" = "ESYSRESCUE" ]; then
2329 ventoy_img_esysrescue
2330 elif [ -e (vtimghd,1)/easy.sfs ]; then
2332 elif [ -d (vtimghd,2)/easyos ]; then
2334 elif [ -e (vtimghd,1)/volumio.initrd ]; then
2336 elif [ -f (vtimghd,2)/loader/entries/ubos.conf ]; then
2338 elif [ -f (vtimghd,2)/etc/openwrt_version ]; then
2341 if [ -f (vtimghd,1)/efi/boot/mt86.png ]; then
2342 if [ "$grub_platform" = "pc" ]; then
2348 vt_linux_chain_data "${vtoy_iso_part}${vt_chosen_path}"
2349 ventoy_acpi_param ${vtoy_chain_mem_addr} 512
2350 if [ "$grub_platform" = "pc" ]; then
2351 linux16 $vtoy_path/ipxe.krn ${vtdebug_flag} sector512 mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
2354 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi sector512 env_param=${env_param} isoefi=${LoadIsoEfiDriver} FirstTry=${FirstTryBootFile} ${vtdebug_flag} mem:${vtoy_chain_mem_addr}:size:${vtoy_chain_mem_size}
2361 set root=$vtback_root
2363 set theme=$vtback_theme
2365 set ventoy_compatible=NO
2368 function img_unsupport_menuentry {
2369 common_unsupport_menuentry
2372 function mimg_common_menuentry {
2373 vt_chosen_img_path vt_chosen_path vt_chosen_size vt_chosen_name
2375 if vt_check_password "${vt_chosen_path}"; then
2379 echo "memdisk mode boot for $vt_chosen_path"
2383 if [ "$grub_platform" = "pc" ]; then
2384 legacy_img_memdisk $vtoy_iso_part "$vt_chosen_path"
2386 vt_load_img_memdisk "$vtoy_iso_part$vt_chosen_path" vtoy_img_buf
2388 chainloader ${vtoy_path}/ventoy_${VTOY_EFI_ARCH}.efi memdisk env_param=${env_param} isoefi=${LoadIsoEfiDriver} ${vtdebug_flag} mem:${vtoy_img_buf_addr}:size:${vtoy_img_buf_size}
2394 #############################################################
2395 #############################################################
2396 #############################################################
2397 ####### Main Process ###########
2398 #############################################################
2399 #############################################################
2400 #############################################################
2402 set VENTOY_VERSION="1.0.86"
2404 #ACPI not compatible with Window7/8, so disable by default
2405 set VTOY_PARAM_NO_ACPI=1
2407 # Default menu display mode, you can change it as you want.
2410 set VTOY_DEFAULT_MENU_MODE=0
2412 set VTOY_MEM_DISK_STR="[Memdisk]"
2413 set VTOY_ISO_RAW_STR="Compatible Mode"
2414 set VTOY_GRUB2_MODE_STR="GRUB2 Mode"
2415 set VTOY_WIMBOOT_MODE_STR="WIMBOOT Mode"
2416 set VTOY_ISO_UEFI_DRV_STR="UEFI FS"
2418 set VTOY_F2_CMD="vt_browser_disk"
2419 set VTOY_F4_CMD="ventoy_localboot"
2420 set VTOY_F5_CMD="ventoy_diagnosis"
2421 set VTOY_F6_CMD="ventoy_ext_menu"
2422 set VTOY_HELP_CMD="ventoy_show_help"
2423 set VTOY_CHKSUM_CMD="ventoy_checksum"
2424 set VTOY_HELP_TXT_LANGUAGE="en_US"
2425 set VTOY_CHKSUM_FILE_PATH="X"
2426 set VTOY_LANG_CMD="ventoy_language"
2429 if [ "$grub_platform" = "pc" ]; then
2430 set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION BIOS www.ventoy.net"
2432 if [ "$grub_cpu" = "i386" ]; then
2433 set VTOY_EFI_ARCH=ia32
2434 set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION IA32 www.ventoy.net"
2435 elif [ "$grub_cpu" = "arm64" ]; then
2436 set VTOY_EFI_ARCH=aa64
2437 set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION AA64 www.ventoy.net"
2438 elif [ "$grub_cpu" = "mips64el" ]; then
2439 set VTOY_EFI_ARCH=mips
2440 set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION MIPS www.ventoy.net"
2442 set VTOY_EFI_ARCH=x64
2443 set VTOY_TEXT_MENU_VER="Ventoy $VENTOY_VERSION UEFI www.ventoy.net"
2447 vt_device $root vtoy_dev
2449 if [ "$vtoy_dev" = "tftp" ]; then
2450 set vtoy_path=($root)
2451 for vtid in 0 1 2 3; do
2452 if [ -f (hd$vtid,2)/ventoy/ventoy.cpio ]; then
2453 set vtoy_iso_part=(hd$vtid,1)
2454 set vtoy_efi_part=(hd$vtid,2)
2461 if [ -n "$vtoy_efi_part" ]; then
2462 vt_load_file_to_mem "auto" $vtoy_efi_part/grub/fonts/unicode.pf2 vtoy_font_mem
2463 loadfont mem:${vtoy_font_mem_addr}:size:${vtoy_font_mem_size}
2466 if [ -f $vtoy_iso_part/ventoy/ventoy.json ]; then
2467 set vt_plugin_path=$vtoy_iso_part
2469 set vt_plugin_path=$prefix
2470 vt_load_plugin $vt_plugin_path
2473 if [ "$prefix" = "(ventoydisk)/grub" ]; then
2474 set vtoy_path=(ventoydisk)/ventoy
2476 set vtoy_path=($root)/ventoy
2479 set vtoydev=$vtoy_dev
2480 set vtoy_iso_part=($vtoy_dev,1)
2481 set vtoy_efi_part=($vtoy_dev,2)
2483 vt_load_file_to_mem "auto" $prefix/fonts/unicode.pf2 vtoy_font_mem
2484 loadfont mem:${vtoy_font_mem_addr}:size:${vtoy_font_mem_size}
2486 set vt_plugin_path=$vtoy_iso_part
2489 #Load Partition Table
2490 vt_load_part_table $vtoydev
2492 #Load menu lang file
2493 ventoy_load_menu_lang_file
2496 if [ -f $vtoy_iso_part/ventoy/ventoy.json ]; then
2498 vt_load_plugin $vtoy_iso_part
2501 vt_check_json_path_case $vtoy_iso_part
2504 if [ -n "$VTOY_MENU_LANGUAGE" ]; then
2505 vt_init_menu_lang "$VTOY_MENU_LANGUAGE"
2507 vt_init_menu_lang en_US
2510 if [ -n "$VTOY_MENU_TIMEOUT" ]; then
2511 set timeout=$VTOY_MENU_TIMEOUT
2516 if [ -f $vtoy_iso_part/ventoy/ventoy_wimboot.img ]; then
2517 vt_load_wimboot $vtoy_iso_part/ventoy/ventoy_wimboot.img
2518 elif [ -f $vtoy_efi_part/ventoy/ventoy_wimboot.img ]; then
2519 vt_load_wimboot $vtoy_efi_part/ventoy/ventoy_wimboot.img
2522 if [ -f $vtoy_iso_part/ventoy/ventoy_vhdboot.img ]; then
2523 vt_load_vhdboot $vtoy_iso_part/ventoy/ventoy_vhdboot.img
2524 elif [ -f $vtoy_efi_part/ventoy/ventoy_vhdboot.img ]; then
2525 vt_load_vhdboot $vtoy_efi_part/ventoy/ventoy_vhdboot.img
2529 if [ $VTOY_DEFAULT_MENU_MODE -eq 0 ]; then
2530 set VTOY_F3_CMD="vt_dynamic_menu 1 1"
2532 set VTOY_F3_CMD="vt_dynamic_menu 1 0"
2535 terminal_output console
2537 if [ -n "$vtoy_gfxmode" ]; then
2538 set gfxmode=$vtoy_gfxmode
2541 set gfxmode=1024x768
2546 if [ "$vtoy_display_mode" = "CLI" ]; then
2547 terminal_output console
2548 elif [ "$vtoy_display_mode" = "serial" ]; then
2549 if [ -n "$vtoy_serial_param" ]; then
2550 serial $vtoy_serial_param
2552 terminal_input serial
2553 terminal_output serial
2554 elif [ "$vtoy_display_mode" = "serial_console" ]; then
2555 if [ -n "$vtoy_serial_param" ]; then
2556 serial $vtoy_serial_param
2558 terminal_input serial console
2559 terminal_output serial console
2561 if [ "$vtoy_res_fit" = "1" ]; then
2562 terminal_output gfxterm
2565 if [ -n "$vtoy_theme" ]; then
2568 set theme=$prefix/themes/ventoy/theme.txt
2570 terminal_output gfxterm
2573 if [ "$grub_platform" = "efi" ]; then
2574 set mouse_delta=4000
2575 # terminal_input --append mouse
2578 if [ -n "$VTOY_DEFAULT_KBD_LAYOUT" ]; then
2579 set_keyboard_layout "$VTOY_DEFAULT_KBD_LAYOUT"
2582 if [ -n "$VTOY_PLUGIN_PATH_CASE_MISMATCH" ]; then
2584 echo "$VTOY_PLUGIN_PATH_CASE_MISMATCH"
2585 echo -e "\n\nPath case does not match! ventoy directory and ventoy.json MUST be all lowercase!"
2586 echo -e "\n路径大小写不匹配!ventoy 目录和 ventoy.json 文件的名字必须是全部小写,请修正!"
2587 echo -e "\n\npress ENTER to continue (请按回车键继续) ..."
2591 if [ -n "$VTOY_PLUGIN_SYNTAX_ERROR" ]; then
2593 if [ -n "$VTOY_PLUGIN_ENCODE_ERROR" ]; then
2594 echo -e "\n Encoding type for ventoy.json is not supported, please convert to UTF-8.\n"
2595 echo -e " ventoy.json 文件编码格式不支持,请转换为 UTF-8 编码格式!\n"
2597 echo -e "\n Syntax error detected in ventoy.json, please check! \n"
2598 echo -e " ventoy.json 文件中有语法错误,所有配置都不会生效,请检查!\n"
2601 echo -e "\n press ENTER to continue (请按 回车 键继续) ..."
2606 for vtTFile in ventoy.json ventoy_grub.cfg; do
2607 if [ -f $vtoy_efi_part/ventoy/$vtTFile ]; then
2609 echo -e "\n You need to put $vtTFile in the 1st partition which hold the ISO files.\n"
2610 echo -e " $vtTFile 放错分区了,请放到镜像分区里的 ventoy 目录下(此目录需要手动创建)!\n"
2611 echo -e "\n press ENTER to continue (请按 回车 键继续) ..."
2616 #clear all input key before show main menu
2619 #export necessary variable
2627 export vtoy_iso_part
2628 export vtoy_efi_part
2629 export VENTOY_VERSION
2630 export VTOY_CUR_VIDEO_MODE
2631 export VTOY_EFI_ARCH
2632 export VTOY_MEM_DISK_STR
2633 export VTOY_ISO_RAW_STR
2634 export VTOY_GRUB2_MODE_STR
2635 export VTOY_WIMBOOT_MODE_STR
2636 export VTOY_ISO_UEFI_DRV_STR
2641 export VTOY_HELP_CMD
2642 export VTOY_CHKSUM_CMD
2643 export VTOY_HELP_TXT_LANGUAGE
2644 export VTOY_CHKSUM_FILE_PATH
2645 export VTOY_LANG_CMD
2648 #colect all image files (iso files)
2649 set ventoy_img_count=0
2650 vt_list_img $vtoy_iso_part ventoy_img_count
2653 if [ $ventoy_img_count -gt 0 ]; then
2654 if [ $VTOY_DEFAULT_MENU_MODE -eq 0 ]; then
2660 if [ -n "$VTOY_NO_ISO_TIP" ]; then
2661 NO_ISO_MENU="No ISO or supported IMG files found, $VTOY_NO_ISO_TIP"
2662 elif [ -n "$VTOY_DEFAULT_SEARCH_ROOT" ]; then
2663 NO_ISO_MENU="No ISO or supported IMG files found, please check VTOY_DEFAULT_SEARCH_ROOT"
2665 NO_ISO_MENU="No ISO or supported IMG files found"
2667 menuentry "$NO_ISO_MENU (Press enter to reboot ...)" {
2668 echo -e "\n Rebooting ... "
2674 #special VTOY_DEFAULT_IMAGE process
2675 if [ -n "$VTOY_DEFAULT_IMAGE" ]; then
2676 if regexp --set 1:vtHotkey --set 2:vtDefault "(F[2-9])>(.*)" "$VTOY_DEFAULT_IMAGE"; then
2678 set default="$vtDefault"
2679 if [ -z "$VTOY_MENU_TIMEOUT" ]; then
2682 set timeout=$VTOY_MENU_TIMEOUT
2690 if [ "$vtHotkey" = "F2" ]; then
2693 elif [ "$vtHotkey" = "F4" ]; then
2695 elif [ "$vtHotkey" = "F5" ]; then
2697 elif [ "$vtHotkey" = "F6" ]; then