1 config BR2_PACKAGE_FIREJAIL
3 depends on BROKEN # does not cross-compile at all
4 depends on BR2_USE_MMU # fork()
5 depends on BR2_TOOLCHAIN_HAS_THREADS
6 # uClibc: error: ‘EM_ARM’ undeclared
7 depends on !BR2_TOOLCHAIN_USES_UCLIBC
9 Firejail is a SUID program that reduces the risk of security
10 breaches by restricting the running environment of untrusted
11 applications using Linux namespaces and seccomp-bpf. It
12 allows a process and all its descendants to have their own
13 private view of the globally shared kernel resources, such
14 as the network stack, process table, mount table.
16 https://firejail.wordpress.com/
18 comment "firejail needs a glibc or musl toolchain w/ threads"
19 depends on BR2_USE_MMU
21 depends on BR2_TOOLCHAIN_USES_UCLIBC || !BR2_TOOLCHAIN_HAS_THREADS