-vtdebug "MODE=$MODE FORCE=$FORCE RESERVE_SPACE=$RESERVE_SPACE RESERVE_SIZE_MB=$RESERVE_SIZE_MB"
-
-if ! check_tool_work_ok; then
- vterr "Some tools can not run in current system. Please check log.txt for detail."
- exit 1
+if [ "$MODE" = "list" ]; then
+ version=$(get_disk_ventoy_version $DISK)
+ if [ $? -eq 0 ]; then
+ echo "Ventoy Version in Disk: $version"
+
+ vtPart1Type=$(dd if=$DISK bs=1 count=1 skip=450 status=none | hexdump -n1 -e '1/1 "%02X"')
+ if [ "$vtPart1Type" = "EE" ]; then
+ echo "Disk Partition Style : GPT"
+ else
+ echo "Disk Partition Style : MBR"
+ fi
+
+ if check_disk_secure_boot $DISK; then
+ echo "Secure Boot Support : YES"
+ else
+ echo "Secure Boot Support : NO"
+ fi
+ else
+ echo "Ventoy Version: NA"
+ fi
+ echo ""
+ exit 0