Skip to content

Commit

Permalink
QA Test 032: mkfs.msdos doesn't support large filesystems either
Browse files Browse the repository at this point in the history
extend the minix large filesystem special casing to msdos
  • Loading branch information
Christoph Hellwig committed Dec 4, 2002
1 parent c9d3a9f commit c661ca4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 032
Original file line number Diff line number Diff line change
Expand Up @@ -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 |"
Expand Down

0 comments on commit c661ca4

Please sign in to comment.