Auto memdisk plugin support some IMA/IMG files.

This commit is contained in:
longpanda 2022-12-05 10:51:15 +08:00
parent 40c4825aac
commit f222f8cac9
3 changed files with 36 additions and 1 deletions

View file

@ -2079,6 +2079,13 @@ static int ventoy_collect_img_files(const char *filename, const struct grub_dirh
img->menu_prefix = "miso";
}
}
else if (img_type_img == type)
{
if (ventoy_plugin_check_memdisk(img->path))
{
img->menu_prefix = "mimg";
}
}
debug("Add %s%s to list %d\n", node->dir, filename, g_ventoy_img_count);
}