Fix Minnowboard Turbot model names. SG-2320 -> MBT-2220, SG-2340 -> MBT-4220

This commit is contained in:
Renato Botelho 2018-08-28 16:30:23 -03:00
parent 0a906fcc2e
commit 45fbd1bdcb

View File

@ -2414,10 +2414,10 @@ function system_identify_specific_platform() {
/* Detect specific model */
switch ($hw_ncpu) {
case '4':
$result['model'] = 'SG-2340';
$result['model'] = 'MBT-4220';
break;
case '2':
$result['model'] = 'SG-2320';
$result['model'] = 'MBT-2220';
break;
default:
$result['model'] = $result['name'];