From b694d6faf82dbe2aaa2558a1d839056672ffed7f Mon Sep 17 00:00:00 2001 From: xrh0905 Date: Fri, 3 Oct 2025 18:57:08 +0800 Subject: [PATCH] feat: Support 8k sector sizes (#1040) --- src/disk.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/disk.sh b/src/disk.sh index 3a1ff6d..032f39d 100644 --- a/src/disk.sh +++ b/src/disk.sh @@ -509,9 +509,6 @@ addDevice () { if [ -n "$physical" ]; then if [[ "$physical" != "512" ]]; then sectors=",logical_block_size=$logical,physical_block_size=$physical" - if [[ "$physical" != "4096" && "$physical" != "32768" ]]; then - warn "Unknown physical sector size: $physical for $DISK_DEV" - fi fi else warn "Failed to determine the sector size for $DISK_DEV"