commit | acefe010e0b48193c2f3d44b71f83e917259f2f2 | [log] [tgz] |
---|---|---|
author | Zev Weiss <zev@bewilderbeest.net> | Tue Sep 12 19:12:22 2023 -0700 |
committer | Zev Weiss <zev@bewilderbeest.net> | Tue Sep 12 19:15:14 2023 -0700 |
tree | 815f16fe883d382982279203ffc9e6b168059db7 | |
parent | 35f44fccdc0c9ea42026d48a5b1e25a916e2a60c [diff] |
config: Allow multi-word config values None of the presently existing config keys need it, but in order to support configuring multiple channels of the Aspeed UART-routing mux it will be useful to be able to have multiple (space-separated) words in a config value (whereas previously the value was truncated at the first space). The '#' comment character is respected as terminating the value, however. Signed-off-by: Zev Weiss <zev@bewilderbeest.net> Change-Id: I2ab6f16efb2f0bed1041d79b1766136df939350d
To build this project, run the following shell commands:
meson setup build meson compile -C build
To test:
meson test -C build
Running the server requires a serial port (e.g. /dev/ttyS0):
touch obmc-console.conf ./obmc-console-server --config obmc-console.conf ttyS0
To connect to the server, simply run the client:
./obmc-console-client
To disconnect the client, use the standard ~.
combination.
This shows how the host UART connection is abstracted within the BMC as a Unix domain socket.
+---------------------------------------------------------------------------------------------+ | | | obmc-console-client unix domain socket obmc-console-server | | | | +----------------------+ +------------------------+ | | | client.2200.conf | +---------------------+ | server.ttyVUART0.conf | | +---+--+ +----------------------+ | | +------------------------+ +--------+-------+ Network | 2200 +--> +->+ @obmc-console.host0 +<-+ <--+ /dev/ttyVUART0 | UARTs +---+--+ | console-id = "host0" | | | | console-id = "host0" | +--------+-------+ | | | +---------------------+ | | | | +----------------------+ +------------------------+ | | | | | | | +---------------------------------------------------------------------------------------------+
This supports multiple independent consoles. The console-id
is a unique portion for the unix domain socket created by the obmc-console-server instance. The server needs to know this because it needs to know what to name the pipe; the client needs to know it as it needs to form the abstract socket name to which to connect.