2009-08-25 02:53:22 +02:00
|
|
|
menu "Console options"
|
2009-10-07 18:15:40 +02:00
|
|
|
# TODO: Rename to SERIAL_CONSOLE once Kconfig transition is complete.
|
2009-09-25 19:24:08 +02:00
|
|
|
config CONSOLE_SERIAL8250
|
2009-10-17 00:39:55 +02:00
|
|
|
bool "Serial port console output"
|
2009-08-12 17:00:51 +02:00
|
|
|
default y
|
2009-10-07 18:15:40 +02:00
|
|
|
help
|
|
|
|
Send coreboot debug output to a serial port console.
|
2009-08-12 17:00:51 +02:00
|
|
|
|
2009-10-17 00:39:55 +02:00
|
|
|
choice
|
2009-10-27 00:52:34 +01:00
|
|
|
prompt "Serial port"
|
2009-10-17 00:39:55 +02:00
|
|
|
default CONSOLE_SERIAL_COM1
|
|
|
|
depends on CONSOLE_SERIAL8250
|
|
|
|
|
|
|
|
config CONSOLE_SERIAL_COM1
|
2009-10-27 00:52:34 +01:00
|
|
|
bool "COM1/ttyS0, I/O port 0x3f8"
|
2009-10-17 00:39:55 +02:00
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Serial console on COM1/ttyS0 at I/O port 0x3f8.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_COM2
|
2009-10-27 00:52:34 +01:00
|
|
|
bool "COM2/ttyS1, I/O port 0x2f8"
|
2009-10-17 00:39:55 +02:00
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Serial console on COM2/ttyS1 at I/O port 0x2f8.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_COM3
|
2009-10-27 00:52:34 +01:00
|
|
|
bool "COM3/ttyS2, I/O port 0x3e8"
|
2009-10-17 00:39:55 +02:00
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Serial console on COM3/ttyS2 at I/O port 0x3e8.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_COM4
|
2009-10-27 00:52:34 +01:00
|
|
|
bool "COM4/ttyS3, I/O port 0x2e8"
|
2009-10-17 00:39:55 +02:00
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Serial console on COM4/ttyS3 at I/O port 0x2e8.
|
2009-10-17 00:39:55 +02:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config TTYS0_BASE
|
2009-10-17 00:39:55 +02:00
|
|
|
hex
|
2009-09-25 19:24:08 +02:00
|
|
|
depends on CONSOLE_SERIAL8250
|
2009-10-17 00:39:55 +02:00
|
|
|
default 0x3f8 if CONSOLE_SERIAL_COM1
|
|
|
|
default 0x2f8 if CONSOLE_SERIAL_COM2
|
|
|
|
default 0x3e8 if CONSOLE_SERIAL_COM3
|
|
|
|
default 0x2e8 if CONSOLE_SERIAL_COM4
|
|
|
|
help
|
|
|
|
Map the COM port names to the respective I/O port.
|
2009-08-12 17:00:51 +02:00
|
|
|
|
2009-10-17 00:39:55 +02:00
|
|
|
choice
|
2009-10-27 00:52:34 +01:00
|
|
|
prompt "Baud rate"
|
2009-10-17 00:39:55 +02:00
|
|
|
default CONSOLE_SERIAL_115200
|
2009-10-09 19:40:34 +02:00
|
|
|
depends on CONSOLE_SERIAL8250
|
2009-10-17 00:39:55 +02:00
|
|
|
|
|
|
|
config CONSOLE_SERIAL_115200
|
|
|
|
bool "115200"
|
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Set serial port Baud rate to 115200.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_57600
|
|
|
|
bool "57600"
|
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Set serial port Baud rate to 57600.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_38400
|
|
|
|
bool "38400"
|
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Set serial port Baud rate to 38400.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_19200
|
|
|
|
bool "19200"
|
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Set serial port Baud rate to 19200.
|
2009-10-17 00:39:55 +02:00
|
|
|
config CONSOLE_SERIAL_9600
|
|
|
|
bool "9600"
|
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Set serial port Baud rate to 9600.
|
2009-10-17 00:39:55 +02:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config TTYS0_BAUD
|
|
|
|
int
|
|
|
|
default 115200 if CONSOLE_SERIAL_115200
|
|
|
|
default 57600 if CONSOLE_SERIAL_57600
|
|
|
|
default 38400 if CONSOLE_SERIAL_38400
|
|
|
|
default 19200 if CONSOLE_SERIAL_19200
|
|
|
|
default 9600 if CONSOLE_SERIAL_9600
|
|
|
|
help
|
2009-10-27 00:52:34 +01:00
|
|
|
Map the Baud rates to an integer.
|
2009-08-12 17:00:51 +02:00
|
|
|
|
2009-10-07 18:15:40 +02:00
|
|
|
# TODO: Allow user-friendly selection of settings other than 8n1.
|
2009-10-06 22:48:07 +02:00
|
|
|
config TTYS0_LCS
|
|
|
|
int
|
|
|
|
default 3
|
|
|
|
depends on CONSOLE_SERIAL8250
|
|
|
|
|
2010-09-26 09:35:55 +02:00
|
|
|
# Use "select HAVE_USBDEBUG" on southbridges which have Debug Port code.
|
|
|
|
config HAVE_USBDEBUG
|
|
|
|
def_bool n
|
|
|
|
|
2010-09-26 12:34:36 +02:00
|
|
|
config USBDEBUG
|
|
|
|
def_bool n
|
|
|
|
|
2010-05-25 19:09:05 +02:00
|
|
|
config USBDEBUG
|
2009-10-07 18:15:40 +02:00
|
|
|
bool "USB 2.0 EHCI debug dongle support"
|
2009-08-12 17:00:51 +02:00
|
|
|
default n
|
2010-09-26 09:35:55 +02:00
|
|
|
depends on HAVE_USBDEBUG
|
2009-10-07 18:15:40 +02:00
|
|
|
help
|
|
|
|
This option allows you to use a so-called USB EHCI Debug device
|
2010-09-26 09:35:55 +02:00
|
|
|
(such as the Ajays NET20DC, AMIDebug RX, or a system using the
|
|
|
|
Linux "EHCI Debug Device gadget" driver found in recent kernel)
|
2009-10-07 18:15:40 +02:00
|
|
|
to retrieve the coreboot debug messages (instead, or in addition
|
|
|
|
to, a serial port).
|
|
|
|
|
|
|
|
This feature is NOT supported on all chipsets in coreboot!
|
|
|
|
|
|
|
|
It also requires a USB2 controller which supports the EHCI
|
2010-09-26 09:35:55 +02:00
|
|
|
Debug Port capability.
|
|
|
|
|
|
|
|
See http://www.coreboot.org/EHCI_Debug_Port for an up-to-date list
|
|
|
|
of supported controllers.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2009-08-12 17:00:51 +02:00
|
|
|
|
2010-10-02 22:33:56 +02:00
|
|
|
# Note: This option doesn't make sense on Intel ICH / AMD SB600 southbridges
|
|
|
|
# as those hardcode the physical USB port to be used as Debug Port to 1.
|
|
|
|
# It cannot be changed by coreboot.
|
2010-09-27 20:03:18 +02:00
|
|
|
config USBDEBUG_DEFAULT_PORT
|
|
|
|
int "Default USB port to use as Debug Port"
|
|
|
|
default 1
|
2010-10-02 22:33:56 +02:00
|
|
|
depends on USBDEBUG && !SOUTHBRIDGE_INTEL_I82801GX && !SOUTHBRIDGE_AMD_SB600
|
2010-09-27 20:03:18 +02:00
|
|
|
help
|
|
|
|
This option selects which physical USB port coreboot will try to
|
|
|
|
use as EHCI Debug Port first (valid values are: 1-15).
|
|
|
|
|
|
|
|
If coreboot doesn't detect an EHCI Debug Port dongle on this port,
|
|
|
|
it will try all the other ports one after the other. This will take
|
|
|
|
a few seconds of time though, and thus slow down the booting process.
|
|
|
|
|
|
|
|
Hence, if you select the correct port here, you can speed up
|
|
|
|
your boot time. Which USB port number (1-15) refers to which
|
|
|
|
actual port on your mainboard (potentially also USB pin headers
|
|
|
|
on your mainboard) is highly board-specific, and you'll likely
|
|
|
|
have to find out by trial-and-error.
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config CONSOLE_VGA
|
2009-10-07 18:15:40 +02:00
|
|
|
bool "Use VGA console once initialized"
|
2009-08-12 17:00:51 +02:00
|
|
|
default n
|
|
|
|
|
2009-10-07 18:15:40 +02:00
|
|
|
# TODO: Deps?
|
|
|
|
# TODO: Improve description.
|
2009-09-22 20:49:08 +02:00
|
|
|
config CONSOLE_VGA_ONBOARD_AT_FIRST
|
2009-10-07 18:15:40 +02:00
|
|
|
bool "Use onboard VGA as primary video device"
|
2009-09-22 20:49:08 +02:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
If not selected, the last adapter found will be used.
|
|
|
|
|
2010-07-16 22:02:09 +02:00
|
|
|
config CONSOLE_NE2K
|
|
|
|
bool "Network console over NE2000 compatible Ethernet adapter"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Send coreboot debug output to a Ethernet console, it works
|
|
|
|
same way as Linux netconsole, packets are received to UDP
|
|
|
|
port 6666 on IP/MAC specified with options bellow.
|
|
|
|
Use following netcat command: nc -u -l -p 6666
|
|
|
|
|
|
|
|
config CONSOLE_NE2K_DST_MAC
|
|
|
|
depends on CONSOLE_NE2K
|
|
|
|
string "Destination MAC address of remote system"
|
|
|
|
default "00:13:d4:76:a2:ac"
|
|
|
|
help
|
|
|
|
Type in either MAC address of logging system or MAC address
|
|
|
|
of the router.
|
|
|
|
|
|
|
|
config CONSOLE_NE2K_DST_IP
|
|
|
|
depends on CONSOLE_NE2K
|
|
|
|
string "Destination IP of logging system"
|
|
|
|
default "10.0.1.27"
|
|
|
|
help
|
|
|
|
This is IP adress of the system running for example
|
|
|
|
netcat command to dump the packets.
|
|
|
|
|
|
|
|
config CONSOLE_NE2K_SRC_IP
|
|
|
|
depends on CONSOLE_NE2K
|
2010-09-23 20:29:40 +02:00
|
|
|
string "IP address of coreboot system"
|
2010-07-16 22:02:09 +02:00
|
|
|
default "10.0.1.253"
|
|
|
|
help
|
2010-09-23 20:29:40 +02:00
|
|
|
This is the IP of the coreboot system
|
2010-07-16 22:02:09 +02:00
|
|
|
|
|
|
|
config CONSOLE_NE2K_IO_PORT
|
|
|
|
depends on CONSOLE_NE2K
|
|
|
|
hex "NE2000 adapter fixed IO port address"
|
|
|
|
default 0xe00
|
|
|
|
help
|
|
|
|
This is the IO port address for the IO port
|
|
|
|
on the card, please select some non-conflicting region,
|
|
|
|
32 bytes of IO spaces will be used (and align on 32 bytes
|
|
|
|
boundary, qemu needs broader align)
|
|
|
|
|
|
|
|
|
2009-10-11 15:35:24 +02:00
|
|
|
choice
|
2009-10-16 21:29:45 +02:00
|
|
|
prompt "Maximum console log level"
|
|
|
|
default MAXIMUM_CONSOLE_LOGLEVEL_8
|
2009-10-11 15:35:24 +02:00
|
|
|
|
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_8
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "8: SPEW"
|
|
|
|
help
|
|
|
|
Way too many details.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_7
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "7: DEBUG"
|
|
|
|
help
|
|
|
|
Debug-level messages.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_6
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "6: INFO"
|
|
|
|
help
|
|
|
|
Informational messages.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_5
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "5: NOTICE"
|
|
|
|
help
|
|
|
|
Normal but significant conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_4
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "4: WARNING"
|
|
|
|
help
|
|
|
|
Warning conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_3
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "3: ERR"
|
|
|
|
help
|
|
|
|
Error conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_2
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "2: CRIT"
|
|
|
|
help
|
|
|
|
Critical conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_1
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "1: ALERT"
|
|
|
|
help
|
|
|
|
Action must be taken immediately.
|
2009-10-11 15:35:24 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL_0
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "0: EMERG"
|
|
|
|
help
|
|
|
|
System is unusable.
|
2009-10-11 15:35:24 +02:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2009-08-12 17:00:51 +02:00
|
|
|
config MAXIMUM_CONSOLE_LOGLEVEL
|
2009-10-11 15:35:24 +02:00
|
|
|
int
|
|
|
|
default 0 if MAXIMUM_CONSOLE_LOGLEVEL_0
|
|
|
|
default 1 if MAXIMUM_CONSOLE_LOGLEVEL_1
|
|
|
|
default 2 if MAXIMUM_CONSOLE_LOGLEVEL_2
|
|
|
|
default 3 if MAXIMUM_CONSOLE_LOGLEVEL_3
|
|
|
|
default 4 if MAXIMUM_CONSOLE_LOGLEVEL_4
|
|
|
|
default 5 if MAXIMUM_CONSOLE_LOGLEVEL_5
|
|
|
|
default 6 if MAXIMUM_CONSOLE_LOGLEVEL_6
|
|
|
|
default 7 if MAXIMUM_CONSOLE_LOGLEVEL_7
|
|
|
|
default 8 if MAXIMUM_CONSOLE_LOGLEVEL_8
|
|
|
|
help
|
|
|
|
Map the log level config names to an integer.
|
|
|
|
|
|
|
|
choice
|
2009-10-16 21:29:45 +02:00
|
|
|
prompt "Default console log level"
|
|
|
|
default DEFAULT_CONSOLE_LOGLEVEL_8
|
2009-10-11 15:35:24 +02:00
|
|
|
|
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_8
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "8: SPEW"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8)
|
|
|
|
help
|
|
|
|
Way too many details.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_7
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "7: DEBUG"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7)
|
|
|
|
help
|
|
|
|
Debug-level messages.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_6
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "6: INFO"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_6)
|
|
|
|
help
|
|
|
|
Informational messages.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_5
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "5: NOTICE"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_6 || MAXIMUM_CONSOLE_LOGLEVEL_5)
|
|
|
|
help
|
|
|
|
Normal but significant conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_4
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "4: WARNING"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_6 || MAXIMUM_CONSOLE_LOGLEVEL_5 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_4)
|
|
|
|
help
|
|
|
|
Warning conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_3
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "3: ERR"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_6 || MAXIMUM_CONSOLE_LOGLEVEL_5 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_4 || MAXIMUM_CONSOLE_LOGLEVEL_3)
|
|
|
|
help
|
|
|
|
Error conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_2
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "2: CRIT"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_6 || MAXIMUM_CONSOLE_LOGLEVEL_5 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_4 || MAXIMUM_CONSOLE_LOGLEVEL_3 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_2)
|
|
|
|
help
|
|
|
|
Critical conditions.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_1
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "1: ALERT"
|
|
|
|
depends on (MAXIMUM_CONSOLE_LOGLEVEL_8 || MAXIMUM_CONSOLE_LOGLEVEL_7 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_6 || MAXIMUM_CONSOLE_LOGLEVEL_5 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_4 || MAXIMUM_CONSOLE_LOGLEVEL_3 ||\
|
|
|
|
MAXIMUM_CONSOLE_LOGLEVEL_2 || MAXIMUM_CONSOLE_LOGLEVEL_1)
|
|
|
|
help
|
|
|
|
Action must be taken immediately.
|
2009-10-11 15:35:24 +02:00
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL_0
|
2009-10-16 21:29:45 +02:00
|
|
|
bool "0: EMERG"
|
|
|
|
help
|
|
|
|
System is unusable.
|
2009-10-11 15:35:24 +02:00
|
|
|
|
|
|
|
endchoice
|
2009-08-12 17:00:51 +02:00
|
|
|
|
|
|
|
config DEFAULT_CONSOLE_LOGLEVEL
|
2009-10-11 15:35:24 +02:00
|
|
|
int
|
|
|
|
default 0 if DEFAULT_CONSOLE_LOGLEVEL_0
|
|
|
|
default 1 if DEFAULT_CONSOLE_LOGLEVEL_1
|
|
|
|
default 2 if DEFAULT_CONSOLE_LOGLEVEL_2
|
|
|
|
default 3 if DEFAULT_CONSOLE_LOGLEVEL_3
|
|
|
|
default 4 if DEFAULT_CONSOLE_LOGLEVEL_4
|
|
|
|
default 5 if DEFAULT_CONSOLE_LOGLEVEL_5
|
|
|
|
default 6 if DEFAULT_CONSOLE_LOGLEVEL_6
|
|
|
|
default 7 if DEFAULT_CONSOLE_LOGLEVEL_7
|
|
|
|
default 8 if DEFAULT_CONSOLE_LOGLEVEL_8
|
|
|
|
help
|
|
|
|
Map the log level config names to an integer.
|
2009-08-12 17:00:51 +02:00
|
|
|
|
2009-10-26 16:14:07 +01:00
|
|
|
config CONSOLE_BTEXT
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config CONSOLE_SROM
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config CONSOLE_LOGBUF
|
|
|
|
bool
|
|
|
|
default n
|
2010-03-30 11:57:28 +02:00
|
|
|
|
|
|
|
config NO_POST
|
|
|
|
bool "Don't show any POST codes"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config SERIAL_POST
|
|
|
|
bool "Show POST codes on the serial port console"
|
|
|
|
depends on CONSOLE_SERIAL8250 && !NO_POST
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If enabled, coreboot will additionally print POST codes (which are
|
|
|
|
usually displayed using a so-called "POST card" ISA/PCI/PCI-E
|
|
|
|
device) on the serial console.
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|