From c661ca4093a3d276968e350cbd4badbaad613bd7 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Wed, 4 Dec 2002 17:14:14 +0000 Subject: [PATCH] QA Test 032: mkfs.msdos doesn't support large filesystems either extend the minix large filesystem special casing to msdos --- 032 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/032 b/032 index 3b7f586d..f885f5ad 100755 --- a/032 +++ b/032 @@ -63,8 +63,9 @@ do preargs="" # for any special pre-device options postargs="" # for any special post-device options - # minix mkfs fails for large devices, restrict to 2000 blocks + # minix and msdos mkfs fails for large devices, restrict to 2000 blocks [ $fs = "minix" ] && postargs=2000 + [ $fs = "msdos" ] && postargs=2000 # these folk prompt before writing [ $fs = "jfs" ] && preop="echo Y |" [ $fs = "reiserfs" ] && preop="echo y |"