1config BR2_PACKAGE_CRUN
2	bool "crun"
3	depends on BR2_USE_MMU # fork()
4	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
5	select BR2_PACKAGE_ARGP_STANDALONE if !BR2_TOOLCHAIN_USES_GLIBC
6	select BR2_PACKAGE_YAJL # libocispec
7	help
8	  crun is a fast and low-memory OCI Container Runtime in C.
9
10	  https://github.com/containers/crun
11
12comment "crun needs a glibc or musl toolchain, gcc >= 4.9"
13	depends on BR2_USE_MMU
14	depends on BR2_TOOLCHAIN_USES_UCLIBC || \
15		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
16