diff options
author | Bill Nottingham <notting@redhat.com> | 2000-12-29 19:54:32 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-12-29 19:54:32 +0000 |
commit | e919008cc3cc31350152f41426709aca4b0063dc (patch) | |
tree | e54238c7c551e60476cbc7e1549afcda3db7e77f | |
parent | 5a2b1bc20f12543a5a001d35742cfd5878a083cf (diff) | |
download | anaconda-e919008cc3cc31350152f41426709aca4b0063dc.tar.gz anaconda-e919008cc3cc31350152f41426709aca4b0063dc.tar.xz anaconda-e919008cc3cc31350152f41426709aca4b0063dc.zip |
fix X config on ia64 - find the magic ifarches that make it all go
-rw-r--r-- | iw/bootdisk_gui.py | 4 | ||||
-rw-r--r-- | iw/xconfig_gui.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/iw/bootdisk_gui.py b/iw/bootdisk_gui.py index 63514d54e..2c6a57bdc 100644 --- a/iw/bootdisk_gui.py +++ b/iw/bootdisk_gui.py @@ -16,7 +16,7 @@ class BootdiskWindow (InstallWindow): self.bootdisk = None def getNext (self): - if iutil.getArch() == "alpha": + if iutil.getArch() == "alpha" or iutil.getArch() == "ia64": return None if not self.todo.needBootdisk(): @@ -38,7 +38,7 @@ class BootdiskWindow (InstallWindow): # BootdiskWindow tag="bootdisk" def getScreen (self): - if iutil.getArch() == "alpha": + if iutil.getArch() == "alpha" or iutil.getArch() == "ia64": return None if not self.todo.needBootdisk(): return None diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py index 9c536f931..80b645833 100644 --- a/iw/xconfig_gui.py +++ b/iw/xconfig_gui.py @@ -1159,7 +1159,7 @@ class XConfigWindow (InstallWindow): self.autoBox = GtkVBox (FALSE, 5) arch = iutil.getArch() - if arch == "alpha": + if arch == "alpha" or arch == "ia64": label = GtkLabel (_("Your video ram size can not be autodetected. " "Choose your video ram size from the choices below:")) label.set_justify (JUSTIFY_LEFT) @@ -1213,7 +1213,7 @@ class XConfigWindow (InstallWindow): box.pack_start (self.autoBox, FALSE) # card configuration - if arch == "i386" or arch == "alpha": + if arch == "i386" or arch == "alpha" or arch == "ia64": # Monitor selection tree self.ctree = GtkCTree () |