Update default devices names.

Submitted by:	joerg
This commit is contained in:
Jean-Marc Zucconi 2004-10-12 12:35:37 +00:00
parent ad54e7379b
commit 42b1f6af41
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118989
2 changed files with 27 additions and 27 deletions

View file

@ -7,7 +7,7 @@
PORTNAME= mtools PORTNAME= mtools
PORTVERSION= 3.9.8 PORTVERSION= 3.9.8
PORTREVISION= 3 PORTREVISION= 4
CATEGORIES= emulators CATEGORIES= emulators
MASTER_SITES= ftp://ftp.tux.org/pub/knaff/mtools/ \ MASTER_SITES= ftp://ftp.tux.org/pub/knaff/mtools/ \
http://mtools.linux.lu/ http://mtools.linux.lu/

View file

@ -1,6 +1,6 @@
--- mtools.conf.orig Sun Jan 4 10:29:32 1998 --- mtools.conf.orig Sun May 20 20:18:12 2001
+++ mtools.conf Mon Apr 9 01:14:50 2001 +++ mtools.conf Thu Oct 7 22:14:36 2004
@@ -1,6 +1,84 @@ @@ -1,6 +1,67 @@
# Example mtools.conf files. Uncomment the lines which correspond to # Example mtools.conf files. Uncomment the lines which correspond to
# your architecture and comment out the "SAMPLE FILE" line below # your architecture and comment out the "SAMPLE FILE" line below
-SAMPLE FILE -SAMPLE FILE
@ -22,7 +22,7 @@
+# Floppy disks. Here, A: and B: use automatic size detection. +# Floppy disks. Here, A: and B: use automatic size detection.
+# +#
+# Example: To prepare drive A: for use as a 1.44M floppy on FreeBSD: +# Example: To prepare drive A: for use as a 1.44M floppy on FreeBSD:
+# [1] low level format with ......... fdformat /dev/fd0.1440 +# [1] low level format with ......... fdformat -f 1440 /dev/fd0
+# [2] write a file system with ...... newfs_msdos -f 1440 /dev/fd0 +# [2] write a file system with ...... newfs_msdos -f 1440 /dev/fd0
+# [3] then use mcopy/mdir etc. in the usual way. +# [3] then use mcopy/mdir etc. in the usual way.
+# +#
@ -33,28 +33,11 @@
+drive a: file="/dev/fd0" +drive a: file="/dev/fd0"
+drive b: file="/dev/fd1" +drive b: file="/dev/fd1"
+ +
+# Drive T: is a 1.72M floppy format with 82 cylinders, double sided (2 heads), +# FreeBSD automatically detects a number of common floppy densities, like
+# and 21 sectors of size 512 bytes per track. It uses the same +# 720 KB and 1440 KB MS-DOS formatted media.
+# floppy disk drive (fd0) as drive A: above.
+# +#
+# Example: To prepare and use a 1.72M floppy on FreeBSD: +# To change the density of FreeBSD floppy devices to something unusual,
+# [1] low level format with ......... fdformat /dev/fd0.1720 +# use fdcontrol(8).
+# [2] write a file system with ...... mformat -t 82 -h 2 -n 21 t:
+# [3] then use mcopy/mdir etc. in the usual way.
+#
+# The above note on access permissions applies to /dev/fd0.1720 as well.
+drive t: file="/dev/fd0.1720"
+
+# Drive S: is a 720K floppy format with 80 cylinders, double sided (2 heads),
+# and 43 sectors of size 256 bytes per track. It uses the same
+# floppy disk drive (fd0) as drive A: above.
+#
+# Example: To prepare and use a 720K floppy on FreeBSD:
+# [1] low level format with ......... fdformat /dev/fd0.720
+# [2] write a file system with ...... newfs_msdos -f 720 /dev/fd0
+# [3] then use mcopy/mdir etc. in the usual way.
+#
+drive s: file="/dev/fd0.720"
+ +
+# LS120 (ATAPI) floppy disk (extra parameters allow easy mformat) +# LS120 (ATAPI) floppy disk (extra parameters allow easy mformat)
+# +#
@ -86,9 +69,26 @@
# # Linux floppy drives # # Linux floppy drives
# drive a: file="/dev/fd0" exclusive # drive a: file="/dev/fd0" exclusive
@@ -61,4 +139,4 @@ @@ -61,4 +122,4 @@
# # uncomment the following line to display all file names in lower # # uncomment the following line to display all file names in lower
# # case by default # # case by default
-# mtools_lower_case=1 -# mtools_lower_case=1
+mtools_lower_case=1 +mtools_lower_case=1
--- devices.c.orig Thu Oct 7 22:12:00 2004
+++ devices.c Thu Oct 7 22:16:46 2004
@@ -790,10 +790,10 @@
#ifdef OS_freebsd
#define predefined_devices
struct device devices[] = {
- {"/dev/fd0.1440", 'A', FHD312},
- {"/dev/fd0.720", 'A', FDD312},
- {"/dev/fd1.1200", 'B', MHD514},
- {"/dev/sd0s1", 'C', GENHD},
+ {"/dev/fd0", 'A', FHD312},
+ {"/dev/fd0", 'A', FDD312},
+ {"/dev/fd1", 'B', MHD514},
+ {"/dev/da0s1", 'C', GENHD},
REMOTE
};
#endif /* __FreeBSD__ */