summaryrefslogtreecommitdiffstats
path: root/etc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc')
-rw-r--r--etc/inc/system.inc8
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc
index 755eda6..a211461 100644
--- a/etc/inc/system.inc
+++ b/etc/inc/system.inc
@@ -1927,9 +1927,11 @@ function system_identify_specific_platform() {
/* the rest of the code only deals with 'embedded' platforms */
if ($g['platform'] != 'nanobsd')
return array('name' => $g['platform'], 'descr' => $g['platform']);
-
- $dmesg = system_get_dmesg_boot();
-
+
+ unset($dmesg);
+ $_gb = exec('/sbin/sysctl -n hw.model', $output);
+ $dmesg = $dmesg[0];
+
if (strpos($dmesg, "PC Engines WRAP") !== false)
return array('name' => 'wrap', 'descr' => gettext('PC Engines WRAP'));
OpenPOWER on IntegriCloud