From ade49534aeb46123196f44d65d315a314d6e19e2 Mon Sep 17 00:00:00 2001 From: bfox Date: Mon, 27 Nov 2000 17:56:18 +0000 Subject: Added some code to fix resolution weirdness --- anaconda | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'anaconda') diff --git a/anaconda b/anaconda index 712f5b99a..dd8474a65 100755 --- a/anaconda +++ b/anaconda @@ -99,7 +99,7 @@ if iutil.getArch() == 'ia64': # localInstall - install to chroot # reconfigOnly - allow user to reconfig installed box w/o reinstall # nofallback - don't fall back to text mode on gui startup failure -# lowres - run in 640x480 mode +# runres - resolution to run test = 0 xmode = 0 debug = 0 @@ -372,7 +372,12 @@ if xmode: pass sys.exit (0) -intf = InstallInterface(runres = runres) +print display_mode +print runres +if display_mode == "t": + intf = InstallInterface () +else: + intf = InstallInterface(runres = runres) # imports after setting up the path if not reconfigOnly: -- cgit