Merge pull request #3 from zetxx/master

read only first 10 bytes only
This commit is contained in:
Attila Lendvai 2016-03-17 14:56:20 +01:00
commit 64c1557046

View File

@ -10,7 +10,7 @@ getPendriveSize()
# details: https://dev.openwrt.org/ticket/10716#comment:4
if [ -e /dev/sda ]; then
# force re-read of the partition table
head /dev/sda >/dev/null
head -c 10 /dev/sda >/dev/null
fi
if (grep -q sda /proc/partitions) then