summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2015-10-12 08:39:58 -0700
committerAaron Plattner <aplattner@nvidia.com>2015-10-12 08:39:58 -0700
commitdfbb7dc8fbb4ca2f1a316998a381bca0618419d7 (patch)
tree08fea2b3ae47aedf46333313b63d8303654d3431
parentfdc5a3a6f0bf6af070e1d8c325eecc08d38e9b5a (diff)
358.09358.09
-rw-r--r--files.c10
-rw-r--r--option_table.h7
-rw-r--r--version.mk2
3 files changed, 11 insertions, 8 deletions
diff --git a/files.c b/files.c
index c37586e..5dcc970 100644
--- a/files.c
+++ b/files.c
@@ -2295,16 +2295,18 @@ static char * const native_libdirs[] = {
DEFAULT_AARCH64_TRIPLET_LIBDIR,
#elif defined(NV_PPC64LE)
DEFAULT_PPC64LE_TRIPLET_LIBDIR,
+#else
+#error Unknown architecture! Please update utils.mk to add support for this \
+TARGET_ARCH, and make sure that an architecture-specific NV_$ARCH macro gets \
+defined, and that NV_ARCH_BITS gets defined to the correct word size in bits.
#endif
+
#if NV_ARCH_BITS == 32
DEFAULT_32BIT_LIBDIR,
#elif NV_ARCH_BITS == 64
DEFAULT_64BIT_LIBDIR,
-#else
-#error Unknown architecture! Please update utils.mk to add support for this \
-TARGET_ARCH, and make sure that an architecture-specific NV_$ARCH macro gets \
-defined, and that NV_ARCH_BITS gets defined to the correct word size in bits.
#endif
+
DEFAULT_LIBDIR,
NULL
};
diff --git a/option_table.h b/option_table.h
index be28728..6096697 100644
--- a/option_table.h
+++ b/option_table.h
@@ -577,9 +577,10 @@ static const NVGetoptOption __options[] = {
"infrastructure to automatically build a new kernel module when "
"changing kernels. During installation, if DKMS is detected, "
"nvidia-installer will ask the user if they wish to register the "
- "module with DKMS; the default response is 'no'. This option will "
- "bypass the detection of DKMS, and cause the installer to attempt a "
- "DKMS-based installation regardless of whether DKMS is present."},
+ "module with DKMS; the default response is 'no'. Use this option to "
+ "make the default response 'yes'. This is useful with the "
+ "'--no-questions' or '--silent' options, which assume the default "
+ "values for all questions." },
{ "module-signing-secret-key", MODULE_SIGNING_SECRET_KEY_OPTION,
NVGETOPT_STRING_ARGUMENT, NULL,
diff --git a/version.mk b/version.mk
index 82dd488..268c9a1 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 355.11
+NVIDIA_VERSION = 358.09