QA Test 032: mkfs.msdos doesn't support large filesystems either

extend the minix large filesystem special casing to msdos
This commit is contained in:
Christoph Hellwig
2002-12-04 17:14:14 +00:00
parent c9d3a9f568
commit c661ca4093
+2 -1
View File
@@ -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 |"