diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-11-08 18:37:12 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-11-08 18:37:12 +0000 |
commit | 5dd5b4a1d4b147bdcd922658b1918cbe3783c131 (patch) | |
tree | d475ba91189cc1006e316a6c08651ef7b5cec6b9 | |
parent | eaa6ac15538617451be542dcba54424f662f23a9 (diff) | |
download | FreeBSD-src-5dd5b4a1d4b147bdcd922658b1918cbe3783c131.zip FreeBSD-src-5dd5b4a1d4b147bdcd922658b1918cbe3783c131.tar.gz |
Add special quirk for this ancient Viper drive. This is all creeping
driver bloat -I really *have* to do a quirk table that can be loaded
by the loader.
Submitted by: Hellmuth Michaelis <hm@kts.org>
-rw-r--r-- | sys/cam/scsi/scsi_sa.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/cam/scsi/scsi_sa.c b/sys/cam/scsi/scsi_sa.c index d14bbc4..d21e850 100644 --- a/sys/cam/scsi/scsi_sa.c +++ b/sys/cam/scsi/scsi_sa.c @@ -269,6 +269,11 @@ static struct sa_quirk_entry sa_quirk_table[] = }, { { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", + "VIPER 2525 25462", "-011"}, + SA_QUIRK_NOCOMP|SA_QUIRK_1FM|SA_QUIRK_NODREAD, 0 + }, + { + { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", "VIPER 2525*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 1024 }, { |