Implement more thourough nvidia config check
This commit is contained in:
parent
b036ad9b54
commit
b3541d9dc5
39
sway/main.c
39
sway/main.c
|
@ -57,24 +57,55 @@ void detect_proprietary() {
|
||||||
if (!f) {
|
if (!f) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
bool nvidia = false, nvidia_modeset = false, nvidia_uvm = false, nvidia_drm = false;
|
||||||
while (!feof(f)) {
|
while (!feof(f)) {
|
||||||
char *line;
|
char *line;
|
||||||
if (!(line = read_line(f))) {
|
if (!(line = read_line(f))) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (strstr(line, "nvidia")) {
|
if (strstr(line, "nvidia")) {
|
||||||
fprintf(stderr, "\x1B[1;31mWarning: Proprietary nvidia driver support is considered experimental.\x1B[0m\n");
|
nvidia = true;
|
||||||
free(line);
|
}
|
||||||
break;
|
if (strstr(line, "nvidia_modeset")) {
|
||||||
|
nvidia_modeset = true;
|
||||||
|
}
|
||||||
|
if (strstr(line, "nvidia_uvm")) {
|
||||||
|
nvidia_uvm = true;
|
||||||
|
}
|
||||||
|
if (strstr(line, "nvidia_drm")) {
|
||||||
|
nvidia_drm = true;
|
||||||
}
|
}
|
||||||
if (strstr(line, "fglrx")) {
|
if (strstr(line, "fglrx")) {
|
||||||
fprintf(stderr, "\x1B[1;31mWarning: Proprietary AMD drivers do NOT support Wayland. Use radeon.\x1B[0m\n");
|
fprintf(stderr, "\x1B[1;31mWarning: Proprietary AMD drivers do "
|
||||||
|
"NOT support Wayland. Use radeon.\x1B[0m\n");
|
||||||
free(line);
|
free(line);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
free(line);
|
free(line);
|
||||||
}
|
}
|
||||||
fclose(f);
|
fclose(f);
|
||||||
|
if (nvidia) {
|
||||||
|
fprintf(stderr, "\x1B[1;31mWarning: Proprietary nvidia driver support "
|
||||||
|
"is considered experimental. Nouveau is strongly recommended."
|
||||||
|
"\x1B[0m\n");
|
||||||
|
if (!nvidia_modeset || !nvidia_uvm || !nvidia_drm) {
|
||||||
|
fprintf(stderr, "\x1B[1;31mWarning: You do not have all of the "
|
||||||
|
"necessary kernel modules loaded for nvidia support. "
|
||||||
|
"You need nvidia, nvidia_modeset, nvidia_uvm, and nvidia_drm."
|
||||||
|
"\x1B[0m\n");
|
||||||
|
}
|
||||||
|
f = fopen("/proc/cmdline", "r");
|
||||||
|
if (f) {
|
||||||
|
char *line = read_line(f);
|
||||||
|
if (line && !strstr(line, "nvidia-drm.modeset=1")) {
|
||||||
|
fprintf(stderr, "\x1B[1;31mWarning: You must add "
|
||||||
|
"nvidia-drm.modeset=1 to your kernel command line to use "
|
||||||
|
"the proprietary driver.\x1B[0m\n");
|
||||||
|
}
|
||||||
|
fclose(f);
|
||||||
|
free(line);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void run_as_ipc_client(char *command, char *socket_path) {
|
void run_as_ipc_client(char *command, char *socket_path) {
|
||||||
|
|
Loading…
Reference in a new issue