mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 20:43:02 +02:00
Conmon is an OCI container runtime monitor. It sits between container runtimes, e.g., crun and runc, and userland managers, e.g., podman. Based on work by Christian Stewart and Nathaniel Husted. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
18 lines
595 B
Plaintext
18 lines
595 B
Plaintext
config BR2_PACKAGE_CONMON
|
|
bool "conmon"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_USE_MMU # libglib2
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # no fexecve
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
Conmon is an OCI container runtime monitor, commonly used as an
|
|
interface between runc/crun and podman/CRI-O.
|
|
|
|
https://github.com/containers/conmon
|
|
|
|
comment "conmon needs a glibc or musl toolchain w/ threads, wchar"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_TOOLCHAIN_USES_UCLIBC
|
|
depends on BR2_USE_MMU
|