summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-06-05 19:47:35 +0000
committerChris Lumens <clumens@redhat.com>2007-06-05 19:47:35 +0000
commit4f32704cd9cc4845514550719263221c4bf0e167 (patch)
tree1caaf8c05b15843ea2855da0226a340733f25084
parent44e8b8ac9123e8d4f3504e4cd2416e3dfc5a8079 (diff)
downloadanaconda-4f32704cd9cc4845514550719263221c4bf0e167.tar.gz
anaconda-4f32704cd9cc4845514550719263221c4bf0e167.tar.xz
anaconda-4f32704cd9cc4845514550719263221c4bf0e167.zip
Pass -br to the X server so there's no more hatch (#195919).
-rw-r--r--ChangeLog6
-rwxr-xr-xanaconda2
-rw-r--r--vnc.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e9cb40f2..f8748ca4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-06-05 Chris Lumens <clumens@redhat.com>
+
+ * anaconda: Pass -br to the X server so there's no more hatch
+ (#195919).
+ * vnc.py (startVNCServer): Likewise.
+
2007-06-04 Jeremy Katz <katzj@redhat.com>
* installclass.py (BaseInstallClass.setSteps): Permanently skip
diff --git a/anaconda b/anaconda
index 6a46736e5..f4ccf7bdd 100755
--- a/anaconda
+++ b/anaconda
@@ -817,7 +817,7 @@ if __name__ == "__main__":
xserver.generateConfig()
xserver.addExtraScreen("Anaconda")
xserver.display = ":1"
- xserver.serverflags.extend(["-screen", "Anaconda", "-dpi", "96"])
+ xserver.serverflags.extend(["-screen", "Anaconda", "-dpi", "96", "-br"])
xserver_pid = xserver.startX(xStartedCB=doStartupX11Actions)
except RuntimeError:
stdoutLog.warning(" X startup failed, falling back to text mode")
diff --git a/vnc.py b/vnc.py
index 103b92ae3..74f3c0f05 100644
--- a/vnc.py
+++ b/vnc.py
@@ -250,7 +250,7 @@ def startVNCServer(vncpassword="", root='/', vncconnecthost="",
if not vncpid:
args = [ root + "/usr/bin/Xvnc", ":1", "-nevershared",
- "-depth", "16", "-geometry", "800x600",
+ "-depth", "16", "-geometry", "800x600", "-br",
"IdleTimeout=0", "-auth", "/dev/null", "-once",
"DisconnectClients=false", "desktop=%s" % (desktopname,)]