diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2012-11-13 12:24:31 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2012-11-13 12:24:31 -0800 |
commit | 8ddf2590b97dd0215260849c0b3001712273b1cd (patch) | |
tree | 436db50bf61828308955bf2165a5e78eb5e1c8df | |
parent | 0208a2b152610e54d03aae9e9f982cae2144eb04 (diff) |
310.19310.19
-rw-r--r-- | kernel.c | 37 | ||||
-rw-r--r-- | version.mk | 2 |
2 files changed, 26 insertions, 13 deletions
@@ -155,7 +155,7 @@ int determine_kernel_module_installation_path(Options *op) int determine_kernel_source_path(Options *op, Package *p) { char *CC, *cmd, *result; - char *source_file, *source_path; + char *source_files[2], *source_path; char *arch; int ret, count = 0; @@ -268,22 +268,35 @@ int determine_kernel_source_path(Options *op, Package *p) } if (strncmp(result, "2.4", 3) == 0) { - source_file = nvstrcat(op->kernel_source_path, - "/include/linux/version.h", NULL); + source_files[0] = nvstrcat(op->kernel_source_path, + "/include/linux/version.h", NULL); + source_files[1] = NULL; source_path = op->kernel_source_path; } else { - source_file = nvstrcat(op->kernel_output_path, - "/include/linux/version.h", NULL); + source_files[0] = nvstrcat(op->kernel_output_path, + "/include/linux/version.h", NULL); + source_files[1] = nvstrcat(op->kernel_output_path, + "/include/generated/uapi/linux/version.h", + NULL); source_path = op->kernel_output_path; } free(result); - - if (access(source_file, F_OK) != 0) { - ui_error(op, "The kernel header file '%s' does not exist. " - "The most likely reason for this is that the kernel " - "source files in '%s' have not been configured.", - source_file, source_path); - return FALSE; + + if (access(source_files[0], F_OK) != 0) { + if (!source_files[1]) { + ui_error(op, "The kernel header file '%s' does not exist. " + "The most likely reason for this is that the kernel " + "source files in '%s' have not been configured.", + source_files[0], source_path); + return FALSE; + } else if (access(source_files[1], F_OK) != 0) { + ui_error(op, "Neither the '%s' nor the '%s' kernel header " + "file exists. The most likely reason for this " + "is that the kernel source files in '%s' have not been " + "configured.", + source_files[0], source_files[1], source_path); + return FALSE; + } } /* OK, we seem to have a path to a configured kernel source tree */ @@ -1 +1 @@ -NVIDIA_VERSION = 310.14 +NVIDIA_VERSION = 310.19 |