- %post
* 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:
parent
272e34c303
commit
3491b2bf95
@ -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
|
||||
|
||||
|
8
xdm.spec
8
xdm.spec
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user