summaryrefslogtreecommitdiffstats
path: root/src/etc/inc/system.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/inc/system.inc')
-rw-r--r--src/etc/inc/system.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc
index 883c09f..95205ff 100644
--- a/src/etc/inc/system.inc
+++ b/src/etc/inc/system.inc
@@ -2145,7 +2145,7 @@ EOD;
function system_get_serial() {
unset($output);
- $_gb = exec('/bin/kenv smbios.system.serial 2>/dev/null', $output);
+ $_gb = exec('/bin/kenv -q smbios.system.serial 2>/dev/null', $output);
$serial = $output[0];
$vm_guest = get_single_sysctl('kern.vm_guest');
@@ -2172,8 +2172,8 @@ function system_identify_specific_platform() {
/* Try to guess from smbios strings */
unset($product);
unset($maker);
- $_gb = exec('/bin/kenv smbios.system.product 2>/dev/null', $product);
- $_gb = exec('/bin/kenv smbios.system.maker 2>/dev/null', $maker);
+ $_gb = exec('/bin/kenv -q smbios.system.product 2>/dev/null', $product);
+ $_gb = exec('/bin/kenv -q smbios.system.maker 2>/dev/null', $maker);
switch ($product[0]) {
case 'FW7541':
return (array('name' => 'FW7541', 'descr' => 'Netgate FW7541'));
OpenPOWER on IntegriCloud