d41386a8ac
NVIDIA driver persistence daemon. Signed-off-by: Raphael Pavlidis <raphael.pavlidis@gmail.com> [Arnout: - disable on BR2_STATIC_LIBS; - only depend on tirpc if toolchain doesn't have RPC; - use unstripped binary - the strip support in the makefile is utterly broken (and we anyway strip in target-finalize); - define NVIDIA_PERSISTENCED_USERS directly rather than with another variable; - install all the systemd stuff in NVIDIA_PERSISTENCED_INSTALL_INIT_SYSTEMD. ] Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
15 lines
499 B
Plaintext
15 lines
499 B
Plaintext
config BR2_PACKAGE_NVIDIA_PERSISTENCED
|
|
bool "nvidia-persistenced"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libtirpc
|
|
select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
|
help
|
|
NVIDIA driver persistence daemon.
|
|
|
|
https://github.com/NVIDIA/nvidia-persistenced
|
|
|
|
comment "nvidia-persistenced needs a toolchain w/ threads, dynamic libs"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|