Non-intrusive changes to support Justin's CAM stuff.

This commit is contained in:
Jordan K. Hubbard 1998-01-16 12:50:36 +00:00
parent 70c780fe61
commit 76b851fda2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32558
2 changed files with 5 additions and 3 deletions

View File

@ -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;
}

View File

@ -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()