summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2003-04-04 20:15:04 +0000
committerMatt Wilson <msw@redhat.com>2003-04-04 20:15:04 +0000
commit273ff1d1673b5c73bab3696543f7a18900f20ce1 (patch)
treeb817635503c7e63cb6d020e1ad2e589d74ecfcce
parent1c4066944a43a2e08b0ccf21dbe01d251b2e9689 (diff)
downloadanaconda-273ff1d1673b5c73bab3696543f7a18900f20ce1.tar.gz
anaconda-273ff1d1673b5c73bab3696543f7a18900f20ce1.tar.xz
anaconda-273ff1d1673b5c73bab3696543f7a18900f20ce1.zip
add RUTHLESS support
-rw-r--r--isys/smp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/isys/smp.c b/isys/smp.c
index a558491c1..5478e14a6 100644
--- a/isys/smp.c
+++ b/isys/smp.c
@@ -336,7 +336,8 @@ static int groupForSMP(int mode)
if (mode == MODE_SUMMIT_CHECK) {
if (!strncmp(cth.oem_id, "IBM ENSW", 8) &&
(!strncmp(cth.product_id, "NF 6000R", 8) ||
- !strncmp(cth.product_id, "VIGIL SMP", 9)))
+ !strncmp(cth.product_id, "VIGIL SMP", 9) ||
+ !strncmp(cth.product_id, "RUTHLESS", 8)))
return 1;
return 0;
}