summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index cc8b48e..b310826 100644
--- a/misc.c
+++ b/misc.c
@@ -1286,7 +1286,14 @@ void should_install_uvm(Options *op, Package *p)
if (op->expert) {
op->install_uvm = ui_yes_no(op, op->install_uvm, "Would you like to "
"install the NVIDIA Unified Memory kernel "
- "module?");
+ "module? You must install this module in "
+ "order to use CUDA.");
+ }
+
+ if (!op->install_uvm) {
+ ui_warn(op, "The NVIDIA Unified Memory kernel module will not be "
+ "installed. As a result, CUDA applications will not be able to "
+ "run with this installation of the NVIDIA driver.");
}
}