1 #ifndef lint 2 static char sccsid[] = "@(#)config.c 1.1 (Berkeley/CCI) 07/05/86"; 3 #endif 4 5 /* 6 * Drive configuration information. 7 */ 8 #include "vdfmt.h" 9 10 struct flawpat defpats = { 11 0x0264c993, 0x04c99326, 0x0993264c, 0x13264c98, 12 0x264c9930, 0x4c993260, 0x993264c0, 0x3264c980, 13 0x64c99300, 0xc9932600, 0x93264c00, 0x264c9800, 14 0x4c993000, 0x99326000, 0x3264c000, 0x54c98000 15 }; 16 struct flawpat xfdpats = { 17 0x0d9b366c, 0x1b366cd8, 0x366cd9b0, 0x6cd9b360, 18 0xd9b366c0, 0xb366cd80, 0x66cd9b00, 0xcd9b3600, 19 0x9b366300, 0x366cd800, 0x6cd9b000, 0xd9b36000, 20 0xb366c000, 0x66cd8000, 0xcd9b0000, 0x9b360000 21 }; 22 23 struct vdconfig vdconfig[] = { 24 { "xsd", { 48, 24, 711 }, 0, 3600, 30240, &defpats, 25 "515Mb CDC Winchester" }, 26 { "egl", { 44, 20, 842 }, 0, 3600, 27720, &defpats, 27 "474Mb Fujitsu Eagle Winchester" }, 28 { "fuj", { 64, 10, 823 }, 0, 3600, 40960, &defpats, 29 "360Mb Fujitsu Winchester" }, 30 { "xfd", { 32, 24, 711 }, 0, 3600, 20160, &xfdpats, 31 "340Mb CDC Winchester" }, 32 { "smd", { 32, 19, 823 }, 0, 3600, 20160, &xfdpats, 33 "300Mb CDC 9766" }, 34 { "fsd", { 32, 10, 823 }, 0, 3600, 20160, &xfdpats, 35 "160Mb CDC Winchester" }, 36 }; 37 int ndrives = sizeof (vdconfig) / sizeof (vdconfig[0]); 38