system: move VGA to top so it defaults to the default

This commit is contained in:
Franco Fichtner 2016-11-28 09:39:50 +01:00
parent fbfb00191b
commit e21aa229e4

View File

@ -1602,10 +1602,11 @@ function system_console_unmute()
function system_console_types()
{
return array(
'serial' => array('value' => 'comconsole', 'name' => gettext('Serial Console')),
/* sorted by usage */
'video' => array('value' => 'vidconsole', 'name' => gettext('VGA Console')),
'null' => array('value' => 'nullconsole', 'name' => gettext('Mute Console')),
'serial' => array('value' => 'comconsole', 'name' => gettext('Serial Console')),
'efi' => array('value' => 'efi', 'name' => gettext('EFI Console')),
'null' => array('value' => 'nullconsole', 'name' => gettext('Mute Console')),
);
}