mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
The "proxycommand" binary is used with SSH clients to connect to ugetty over serial. Building it as a host package makes it easy to use with Buildroot builds including ugetty on the target, without needing a separate install. Signed-off-by: Fiona Klute <fiona.klute@gmx.de> [Peter: use install -D] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
14 lines
465 B
Plaintext
14 lines
465 B
Plaintext
config BR2_PACKAGE_HOST_UGETTY
|
|
bool "host ugetty"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # std=c17
|
|
help
|
|
A minimal getty for embedded Linux that auto-detects the
|
|
client and dispatches incoming serial connections to a login
|
|
prompt, a PPP session, or the local SSH server as
|
|
appropriate.
|
|
|
|
The host package builds only the "proxycommand" binary for
|
|
use with SSH clients to connect to ugetty over serial.
|
|
|
|
https://github.com/ryancdotorg/ugetty
|