diff options
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -454,8 +454,10 @@ if display_mode == 'g': if os.access("/etc/X11/XF86Config", os.R_OK) or os.access("/etc/X11/XF86Config-4", os.R_OK): xcfg = xserver.start_existing_X () else: - xcfg = xserver.startX (runres, nofbmode, videohw, monitorhw, - mousehw) + xcfg = xf86config.XF86Config(videohw.primaryCard(), + monitorhw, mousehw, runres) + testxcfg = xserver.startX(runres, nofbmode, videohw, monitorhw, + mousehw) except RuntimeError: print " X startup failed, falling back to text mode" xcfg = xf86config.XF86Config(videohw.primaryCard(), |