diff options
author | Brett Keller <blkeller@comcast.net> | 2016-12-12 15:10:41 -0600 |
---|---|---|
committer | Brett Keller <blkeller@comcast.net> | 2016-12-12 15:10:41 -0600 |
commit | 089c18f38443e41d5ad5345cd28c43581496cd2c (patch) | |
tree | a507590ef20cc8e01f98feb3b6bc0c9dbf5d2b66 /src | |
parent | ffda0181a4c0989085a201e1a9b6bb0b1d691889 (diff) | |
download | pfsense-089c18f38443e41d5ad5345cd28c43581496cd2c.zip pfsense-089c18f38443e41d5ad5345cd28c43581496cd2c.tar.gz |
Add PC Engines APU2 to the list of serial-only platforms
The vidconsole needs to be explicitly disabled for PC Engines APU2,
otherwise the comconsole is garbled and mostly unusable during the
boot block and boot loader.
Diffstat (limited to 'src')
-rw-r--r-- | src/etc/inc/pfsense-utils.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/etc/inc/pfsense-utils.inc b/src/etc/inc/pfsense-utils.inc index 0cc6416..aec1e48 100644 --- a/src/etc/inc/pfsense-utils.inc +++ b/src/etc/inc/pfsense-utils.inc @@ -1096,7 +1096,8 @@ function setup_serial_port($when = "save", $path = "") { $specific_platform = system_identify_specific_platform(); if ($specific_platform['name'] == 'RCC-VE' || $specific_platform['name'] == 'RCC' || - $specific_platform['name'] == 'RCC-DFF') { + $specific_platform['name'] == 'RCC-DFF' || + $specific_platform['name'] == 'apu2') { $serial_only = true; } |