mirror of https://github.com/ipxe/ipxe.git
[cloud] Do not enable serial console on EFI platforms
Most EFI firmware builds (including those found on ARM64 instances in AWS EC2) will already send console output to the serial port. Do not enable direct serial console output in EFI builds using CONFIG=cloud. Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/266/head
parent
cd3de55ea5
commit
4039b54ba3
|
@ -18,8 +18,13 @@
|
|||
* Note that the serial port output from an AWS EC2 virtual machine is
|
||||
* generally available (as the "System Log") only after the instance
|
||||
* has been stopped.
|
||||
*
|
||||
* Enable only for non-EFI builds, on the assumption that the standard
|
||||
* EFI firmware is likely to already be logging to the serial port.
|
||||
*/
|
||||
#ifndef PLATFORM_efi
|
||||
#define CONSOLE_SERIAL
|
||||
#endif
|
||||
|
||||
/* Log to partition on local disk
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue