mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-05-31 15:18:34 -04:00
support for tails.img
This commit is contained in:
parent
83d91c525f
commit
dce5d1b769
13 changed files with 184 additions and 26 deletions
|
@ -232,6 +232,12 @@ static int ventoy_is_possible_blkdev(const char *name)
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* /dev/zramX */
|
||||
if (name[0] == 'z' && name[1] == 'r' && name[2] == 'a' && name[3] == 'm')
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* /dev/loopX */
|
||||
if (name[0] == 'l' && name[1] == 'o' && name[2] == 'o' && name[3] == 'p')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue