SHA256
1
0
forked from pool/xdm
* Do no try to start Xserver on platforms which may ship without
    graphics card (bsc#1039497)

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xdm?expand=0&rev=144
This commit is contained in:
Stefan Dirsch 2017-07-24 13:44:33 +00:00 committed by Git OBS Bridge
parent 272e34c303
commit 3491b2bf95
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Jul 24 13:43:35 UTC 2017 - sndirsch@suse.com
- %post
* Do no try to start Xserver on platforms which may ship without
graphics card (bsc#1039497)
-------------------------------------------------------------------
Mon Feb 6 13:20:21 UTC 2017 - sndirsch@suse.com

View File

@ -173,6 +173,14 @@ chmod 0755 %{buildroot}%{_sbindir}/rcxdm
%endif
%post
# Do no try to start Xserver on platforms which may ship without
# graphics card (bsc#1039497)
%ifarch aarch64 ppc64le
if ! [ -c /dev/fb* -o -d /dev/dri ]; then
sed -i -e "s+DISPLAYMANAGER_STARTS_XSERVER=.*+DISPLAYMANAGER_STARTS_XSERVER=\"no\"+g" \
var/adm/fillup-templates/sysconfig.displaymanager
fi
%endif
%if 0%{?suse_version} < 1315
%{fillup_and_insserv -Y xdm}
%else