summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2013-07-28 16:01:42 +0200
committerKay Sievers <kay@vrfy.org>2013-07-28 16:01:42 +0200
commit45cbe398f5f636c35d9cbf762348d550c652c833 (patch)
treeb4458cc60feefb4e43bd1d4a63b654d1f17925d7 /test
parenta44a5c9d1f6365f9cbaee10e7583abd910867d03 (diff)
test: use 512 MB, mkfs.vfat seems to get confused with FAT32 on small volumes
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-create-disk.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-create-disk.sh b/test/test-create-disk.sh
index 9fe9eee..bd4950f 100755
--- a/test/test-create-disk.sh
+++ b/test/test-create-disk.sh
@@ -2,8 +2,8 @@
# create GPT table with EFI System Partition
rm -f test-disk
-dd if=/dev/null of=test-disk bs=1M seek=64 count=1
-parted --script test-disk "mklabel gpt" "mkpart ESP fat32 1M 64M" "set 1 boot on" "print"
+dd if=/dev/null of=test-disk bs=1M seek=512 count=1
+parted --script test-disk "mklabel gpt" "mkpart ESP fat32 1M 512M" "set 1 boot on" "print"
# create FAT32 file system
LOOP=$(losetup --show -f -P test-disk)