maybe bug fix for gigabyte board

This commit is contained in:
inxi-svn 2011-06-08 07:58:46 +00:00
parent 8232c927ad
commit b3ff07bbb2

8
inxi
View file

@ -5973,9 +5973,11 @@ print_machine_data()
# ibm / ibm can be true; dell / quantum is false, so in other words, only do this # ibm / ibm can be true; dell / quantum is false, so in other words, only do this
# in case where the vendor is the same and the version is the same and not null, # in case where the vendor is the same and the version is the same and not null,
# otherwise the version information is going to be different in all cases I think # otherwise the version information is going to be different in all cases I think
elif [[ ${A_MACHINE_DATA[0]} == ${A_MACHINE_DATA[5]} && \ elif [[ ${A_MACHINE_DATA[0]} == ${A_MACHINE_DATA[5]} ]];then
-n ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[2]} == ${A_MACHINE_DATA[7]} ]];then if [[ -n ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[2]} == ${A_MACHINE_DATA[7]} ]] || \
b_skip_system='true' [[ -z ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[1]} == ${A_MACHINE_DATA[6]} ]];then
b_skip_system='true'
fi
fi fi
fi fi
# no point in showing chassis if system isn't there, it's very unlikely that would be correct # no point in showing chassis if system isn't there, it's very unlikely that would be correct