mirror of
https://schlomp.space/tastytea/hashboot
synced 2024-11-16 14:37:06 +01:00
Throw error if partition table seems corrupt
This commit is contained in:
parent
d17b38e704
commit
a8dcb7496a
4
hashboot
4
hashboot
@ -65,6 +65,10 @@ mbr_size ()
|
||||
startsector=$(LC_ALL=C fdisk -l ${MBR_DEVICE} | grep -A1 'Device' | tail -n1 | awk '{print $3}')
|
||||
|
||||
expr ${sectorsize} \* ${startsector} / 1024
|
||||
if [ ${?} != 0 ]
|
||||
then
|
||||
die 1 "Something went wrong. Most likely your partition table is corrupt. Use hashboot recover to fix this."
|
||||
fi
|
||||
}
|
||||
|
||||
write_hashes ()
|
||||
|
Loading…
Reference in New Issue
Block a user