aboutsummaryrefslogtreecommitdiff
path: root/lib/libdisk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-01-16 12:50:36 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-01-16 12:50:36 +0000
commit76b851fda250a3d5c8260c454b90aefd47e6715f (patch)
tree1d2ecd62c50256071846b74ba4c5419f8cac1564 /lib/libdisk
parent70c780fe6110c3441792cb6bec725268736518a3 (diff)
Notes
Diffstat (limited to 'lib/libdisk')
-rw-r--r--lib/libdisk/create_chunk.c4
-rw-r--r--lib/libdisk/disk.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c
index 83fa345503ec..f8f7a21f2f28 100644
--- a/lib/libdisk/create_chunk.c
+++ b/lib/libdisk/create_chunk.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id$
+ * $Id: create_chunk.c,v 1.27 1997/02/22 15:06:31 peter Exp $
*
*/
@@ -259,6 +259,8 @@ MakeDev(struct chunk *c1, const char *path)
bmaj = 4, cmaj = 13;
else if (!strncmp(p, "od", 2))
bmaj = 20, cmaj = 70;
+ else if (!strncmp(p, "da", 2)) /* CAM support */
+ bmaj = 4, cmaj = 13;
else {
return 0;
}
diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c
index 583073d05506..26bc5566df90 100644
--- a/lib/libdisk/disk.c
+++ b/lib/libdisk/disk.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id$
+ * $Id: disk.c,v 1.27 1997/02/22 15:06:32 peter Exp $
*
*/
@@ -285,7 +285,7 @@ Collapse_Disk(struct disk *d)
}
#endif
-static char * device_list[] = {"wd","sd","od",0};
+static char * device_list[] = {"wd","sd","da","od",0};
char **
Disk_Names()