summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions_system.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-08-25 21:16:29 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-08-25 21:16:29 -0400
commit8bcea14e0f2d442548fc74ccf8f97dd102765724 (patch)
treef8d2637017e34dcd1a7d22c5f6777688d499b239 /pts-core/functions/pts-functions_system.php
parentdc3d4dfff15836be8fe8806aa77ca03f26237bb8 (diff)
downloadphoronix-test-suite-upstream-8bcea14e0f2d442548fc74ccf8f97dd102765724.tar.gz
phoronix-test-suite-upstream-8bcea14e0f2d442548fc74ccf8f97dd102765724.tar.xz
phoronix-test-suite-upstream-8bcea14e0f2d442548fc74ccf8f97dd102765724.zip
pts-core: More improved motherboard detection support
Diffstat (limited to 'pts-core/functions/pts-functions_system.php')
-rw-r--r--pts-core/functions/pts-functions_system.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/functions/pts-functions_system.php b/pts-core/functions/pts-functions_system.php
index 4e7783e..ccb5992 100644
--- a/pts-core/functions/pts-functions_system.php
+++ b/pts-core/functions/pts-functions_system.php
@@ -290,8 +290,8 @@ function system_line_voltage($type)
function main_system_hardware_string()
{
// Returns the motherboard
- $vendor = read_system_hal("system.hardware.vendor");
- $product = read_system_hal("system.hardware.product");
+ $vendor = read_system_hal(array("system.hardware.vendor", "system.board.vendor"));
+ $product = read_system_hal(array("system.hardware.product", "system.board.product"));
$version = read_system_hal("system.hardware.version");
if($vendor != "Unknown")