fbff7d7289
usbguard is a software framework to implement USB device blacklisting and whitelisting based on their attributes. More info. on: https://usbguard.github.io/ Signed-off-by: Kamel Bouhara <kamel.bouhara@bootlin.com> Tested-by: Miquel Raynal <miquel.raynal@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Arnout: - correct indirect dependencies from protobuf instead of libglib2; - say in Config.in help text that rules.conf has to be created]
23 lines
844 B
Plaintext
23 lines
844 B
Plaintext
config BR2_PACKAGE_USBGUARD
|
|
bool "usbguard"
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS # protobuf
|
|
depends on BR2_INSTALL_LIBSTDCPP # protobuf
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # protobuf
|
|
depends on !BR2_STATIC_LIBS # protobuf
|
|
select BR2_PACKAGE_PROTOBUF
|
|
select BR2_PACKAGE_LIBQB
|
|
help
|
|
The USBGuard software framework
|
|
|
|
Install a custom accept/deny list in /etc/usbguard/rules.conf
|
|
(e.g. using an overlay). This file can be generated on the
|
|
target using "usbguard generate-policy".
|
|
|
|
https://usbguard.github.io/
|
|
|
|
comment "usbguard needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|