/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/config/cloud/console.h
36 строк
990 B
Michael Brown
[disklog] Generalise CONSOLE_INT13 to CONSOLE_DISKLOG
07 апр 2026, 15:21
07 апр 2026, 15:21
ec38e98
Код
Авторство
О чём код?
/* * Console configuration suitable for use in public cloud * environments, or any environment where direct console access is not * available. * */ /* Log to syslog(s) server * * The syslog server to be used must be specified via e.g. * "set syslog 192.168.0.1". */ #define CONSOLE_SYSLOG #define CONSOLE_SYSLOGS /* Log to serial port * * 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 * * If all other log mechanisms fail then the VM boot disk containing * the iPXE image can be detached and attached to another machine in * the same cloud, allowing the log to be retrieved from the log * partition. */ #define CONSOLE_DISKLOG