summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rwxr-xr-xfiles/50gdm-disable-wayland.xsetup20
-rwxr-xr-xfiles/50gdm-nokms-disable-wayland.xsetup6
2 files changed, 20 insertions, 6 deletions
diff --git a/files/50gdm-disable-wayland.xsetup b/files/50gdm-disable-wayland.xsetup
new file mode 100755
index 0000000..dbfa33e
--- /dev/null
+++ b/files/50gdm-disable-wayland.xsetup
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+disable=0
+
+# disable Wayland if the user asks us to.
+if /bin/grep -q nowayland /proc/cmdline; then
+ disable=1
+fi
+
+# nokmsboot implies we are using a driver that won't work with Wayland,
+# which prevents autologin working (mga#20079).
+if [ -e /run/mgalive ]; then
+ if /bin/grep -q nokmsboot /proc/cmdline; then
+ disable=1
+ fi
+fi
+
+if [ $disable -eq 1 -a -f /etc/X11/gdm/custom.conf ]; then
+ sed -i 's/#WaylandEnable=false/WaylandEnable=false/' /etc/X11/gdm/custom.conf
+fi
diff --git a/files/50gdm-nokms-disable-wayland.xsetup b/files/50gdm-nokms-disable-wayland.xsetup
deleted file mode 100755
index 6232353..0000000
--- a/files/50gdm-nokms-disable-wayland.xsetup
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-if [ -e /run/mgalive -a -f /etc/X11/gdm/custom.conf ]; then
- if /bin/grep -q nokmsboot /proc/cmdline; then
- sed -i 's/#WaylandEnable=false/WaylandEnable=false/' /etc/X11/gdm/custom.conf
- fi
-fi