summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-04-30 21:55:27 +0000
committerMike Fulbright <msf@redhat.com>2003-04-30 21:55:27 +0000
commit7da463e794dd65db27f467d38f452889cd0db5bd (patch)
tree01e1488d4d24a0e935c9800b7892cad9307f0ae1
parente30959da9dbe2bea23ad59e421832a950c151d21 (diff)
downloadanaconda-7da463e794dd65db27f467d38f452889cd0db5bd.tar.gz
anaconda-7da463e794dd65db27f467d38f452889cd0db5bd.tar.xz
anaconda-7da463e794dd65db27f467d38f452889cd0db5bd.zip
oops
-rw-r--r--iw/xconfig_gui.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py
index 924e15acd..6a9fd3bfa 100644
--- a/iw/xconfig_gui.py
+++ b/iw/xconfig_gui.py
@@ -948,12 +948,8 @@ class XConfigWindow (InstallWindow):
self.force_ppc_fb = 0
arch = iutil.getArch()
# we can only probe video ram on i386
- if arch != "i386":
- label = makeFormattedLabel (_("Your video ram size can not be "
- "autodetected. Choose your video "
- "ram size from the choices below:"))
- box.pack_start (label, gtk.FALSE)
- elif arch == "ppc":
+ # and we force frame buffer on ppc currently
+ if arch == "ppc":
label = makeFormattedLabel (_("Your system will be setup to "
"use the frame buffer driver for "
"the X Window System. If you do "
@@ -962,6 +958,11 @@ class XConfigWindow (InstallWindow):
"'Skip X Configuration' below."))
box.pack_start (label, gtk.FALSE, gtk.FALSE)
self.force_ppc_fb = 1
+ elif arch != "i386":
+ label = makeFormattedLabel (_("Your video ram size can not be "
+ "autodetected. Choose your video "
+ "ram size from the choices below:"))
+ box.pack_start (label, gtk.FALSE)
else:
self.autoBox = gtk.VBox (gtk.FALSE, 5)