Fix BPET5B and similar firmware

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9475 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2011-05-03 15:23:30 +00:00
parent 9355c50c51
commit 7f7ea7c5ae

View File

@ -3835,8 +3835,8 @@ sub sshcfg {
my ($line) = grep(/Build ID:\s+\S+/, @data);
# Minumum firmware version BPET32 required for SSH
$line =~ /(\d+)/;
if ($1 < 32) {
$line =~ /(\d.)/;
if (hex($1) < hex(32)) {
return([1,"SSH supported on AMM with minimum firmware BPET32"]);
}