function vt_check_compatible_linux {
if vt_str_begin "$vt_volume_id" "embootkit"; then
set ventoy_compatible=YES
+ elif [ -e "$1/casper/tinycore.gz" ]; then
+ set ventoy_compatible=YES
fi
return
vt_linux_specify_initrd_file /initrd.gz
elif [ -e (loop)/slax/boot/initrfs.img ]; then
vt_linux_specify_initrd_file /slax/boot/initrfs.img
+ elif [ -e (loop)/minios/boot/initrfs.img ]; then
+ vt_linux_specify_initrd_file /minios/boot/initrfs.img
elif [ -e (loop)/pmagic/initrd.img ]; then
vt_linux_specify_initrd_file /pmagic/initrd.img
elif [ -e (loop)/boot/initrd.xz ]; then
}
function ventoy_img_recalbox {
+ if [ $vtoy_img_max_part_end -gt $vt_chosen_size ]; then
+ echo -e "\nPlease extend the img file size before boot it. \n"
+ ventoy_pause
+ return
+ fi
+
vt_load_cpio $vtoy_path "${vt_chosen_path}" ${vtoy_iso_part} "busybox=$ventoy_busybox_ver"
vt_trailer_cpio ${vtoy_iso_part} "${vt_chosen_path}" noinit
+ if [ -e (vtimghd,1)/boot/recalbox ]; then
+ loopback recalbox (vtimghd,1)/boot/recalbox
+ vt_get_lib_module_ver (recalbox) /lib/modules/ vt_module_ver
+ if [ -n "$vt_module_ver" ]; then
+ vt_img_extra_initrd_append (recalbox)/lib/modules/$vt_module_ver/kernel/drivers/md/dm-mod.ko
+ fi
+ fi
+
ventoy_debug_pause
#boot image file
ventoy_img_batocera
elif vt_str_begin "$vtImgHd1Label" "Tails"; then
ventoy_img_tails
- elif [ "$vtImgHd2Label" = "RECALBOX" ]; then
+ elif [ "$vtImgHd2Label" = "RECALBOX" -o "$vtImgHd1Label" = "RECALBOX" ]; then
ventoy_img_recalbox
elif [ "$vtImgHd1Label" = "ESYSRESCUE" ]; then
ventoy_img_esysrescue
#############################################################
#############################################################
-set VENTOY_VERSION="1.0.62"
+set VENTOY_VERSION="1.0.65"
#ACPI not compatible with Window7/8, so disable by default
set VTOY_PARAM_NO_ACPI=1