Note: when adding a new console, make sure you update the definition of HAS_ONLY_FAST_CONSOLES in ! */
| 17 | /* Note: when adding a new console, make sure you update the definition of |
| 18 | HAS_ONLY_FAST_CONSOLES in <console.h>! */ |
| 19 | void console_hw_init(void) |
| 20 | { |
| 21 | __cbmemc_init(); |
| 22 | __spkmodem_init(); |
| 23 | __qemu_debugcon_init(); |
| 24 | |
| 25 | __uart_init(); |
| 26 | __ne2k_init(); |
| 27 | __usbdebug_init(); |
| 28 | __spiconsole_init(); |
| 29 | __flashconsole_init(); |
| 30 | __system76_ec_init(); |
| 31 | __i2c_smbus_console_init(); |
| 32 | __simnow_console_init(); |
| 33 | } |
| 34 | |
| 35 | void console_interactive_tx_byte(unsigned char byte, void *data_unused) |
| 36 | { |
no test coverage detected