Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dadigang
Ventoy
Commits
f2ed81b0
Commit
f2ed81b0
authored
Jan 06, 2021
by
longpanda
Browse files
update
parent
6434e453
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
6 deletions
+17
-6
README.md
README.md
+2
-2
VtoyTool/vtoydump.c
VtoyTool/vtoydump.c
+15
-4
VtoyTool/vtoytool/00/vtoytool_32
VtoyTool/vtoytool/00/vtoytool_32
+0
-0
VtoyTool/vtoytool/00/vtoytool_64
VtoyTool/vtoytool/00/vtoytool_64
+0
-0
VtoyTool/vtoytool/00/vtoytool_aa64
VtoyTool/vtoytool/00/vtoytool_aa64
+0
-0
No files found.
README.md
View file @
f2ed81b0
...
...
@@ -16,7 +16,7 @@ You can copy many image files at a time and ventoy will give you a boot menu to
x86 Legacy BIOS, IA32 UEFI, x86_64 UEFI and ARM64 UEFI are supported in the same way.
<br/>
Both MBR and GPT partition style are supported in the same way.
<br/>
Most type of OS supported(Windows/WinPE/Linux/Unix/Vmware/Xen...)
<br/>
58
0+ ISO files are tested. 90%+ distros in distrowatch.com supported.
<br/>
60
0+ ISO files are tested. 90%+ distros in distrowatch.com supported.
<br/>
</h4>
# Features
...
...
@@ -34,7 +34,7 @@ Most type of OS supported(Windows/WinPE/Linux/Unix/Vmware/Xen...) <br/>
*
FAT32/exFAT/NTFS/UDF/XFS/Ext2(3)(4) supported for main partition
*
ISO files larger than 4GB supported
*
Native boot menu style for Legacy & UEFI
*
Most type of OS supported,
58
0+ iso files tested
*
Most type of OS supported,
60
0+ iso files tested
*
Linux vDisk boot supported
*
Not only boot but also complete installation process
*
Menu dynamically switchable between List/TreeView mode
...
...
VtoyTool/vtoydump.c
View file @
f2ed81b0
...
...
@@ -484,8 +484,7 @@ static int vtoy_check_device(ventoy_os_param *param, const char *device)
debug
(
"param->vtoy_disk_size=%llu size=%llu
\n
"
,
(
unsigned
long
long
)
param
->
vtoy_disk_size
,
(
unsigned
long
long
)
size
);
if
((
param
->
vtoy_disk_size
==
size
||
param
->
vtoy_disk_size
==
size
+
512
)
&&
memcmp
(
vtguid
,
param
->
vtoy_disk_guid
,
16
)
==
0
&&
if
(
memcmp
(
vtguid
,
param
->
vtoy_disk_guid
,
16
)
==
0
&&
memcmp
(
vtsig
,
param
->
vtoy_disk_signature
,
4
)
==
0
)
{
debug
(
"<%s> is right ventoy disk
\n
"
,
device
);
...
...
@@ -563,8 +562,20 @@ int vtoydump_main(int argc, char **argv)
rc
=
vtoy_os_param_from_file
(
filename
,
param
);
if
(
rc
)
{
debug
(
"ventoy os param not found %d
\n
"
,
rc
);
goto
end
;
debug
(
"ventoy os param not found %d %d
\n
"
,
rc
,
ENOENT
);
if
(
ENOENT
==
rc
)
{
debug
(
"now try with file %s
\n
"
,
"/ventoy/ventoy_os_param"
);
rc
=
vtoy_os_param_from_file
(
"/ventoy/ventoy_os_param"
,
param
);
if
(
rc
)
{
goto
end
;
}
}
else
{
goto
end
;
}
}
if
(
verbose
)
...
...
VtoyTool/vtoytool/00/vtoytool_32
View file @
f2ed81b0
No preview for this file type
VtoyTool/vtoytool/00/vtoytool_64
View file @
f2ed81b0
No preview for this file type
VtoyTool/vtoytool/00/vtoytool_aa64
View file @
f2ed81b0
No preview for this file type
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment