From b81c4da494ed8fac861fb11dab56a9c68d7b91aa Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 12 Dec 2023 15:18:08 +0100 Subject: [PATCH] Drop fglrx detection This ancient driver doesn't do KMS. So we were never able to run with it anyways. --- sway/main.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/sway/main.c b/sway/main.c index 23689757..0db116d3 100644 --- a/sway/main.c +++ b/sway/main.c @@ -70,18 +70,6 @@ void detect_proprietary(int allow_unsupported_gpu) { } break; } - if (strstr(line, "fglrx")) { - if (allow_unsupported_gpu) { - sway_log(SWAY_ERROR, - "!!! Proprietary AMD drivers are in use !!!"); - } else { - sway_log(SWAY_ERROR, "Proprietary AMD drivers do NOT support " - "Wayland. Use radeon. To try anyway, launch sway with " - "--unsupported-gpu and DO NOT report issues."); - exit(EXIT_FAILURE); - } - break; - } } free(line); fclose(f);