Commit 8f711c9d authored by longpanda's avatar longpanda
Browse files

Optimization for check secure boot status in list mode. (PR #703)

parent b0cacd66
...@@ -121,17 +121,11 @@ if [ "$MODE" = "list" ]; then ...@@ -121,17 +121,11 @@ if [ "$MODE" = "list" ]; then
echo "Disk Partition Style : MBR" echo "Disk Partition Style : MBR"
fi fi
vtPART2=$(get_disk_part_name $DISK 2) if check_disk_secure_boot $DISK; then
rm -rf ./tmpmntp2 && mkdir ./tmpmntp2
mount $vtPART2 ./tmpmntp2 > /dev/null 2>&1
if [ -e ./tmpmntp2/EFI/BOOT/MokManager.efi ]; then
echo "Secure Boot Support : YES" echo "Secure Boot Support : YES"
else else
echo "Secure Boot Support : NO" echo "Secure Boot Support : NO"
fi fi
umount ./tmpmntp2 > /dev/null 2>&1
rm -rf ./tmpmntp2
else else
echo "Ventoy Version: NA" echo "Ventoy Version: NA"
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment