summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-06-23 03:24:08 +0000
committerMatt Wilson <msw@redhat.com>2001-06-23 03:24:08 +0000
commit48153651a7519d0654b8c9685907a203464bc684 (patch)
tree76ad6e78b0c26fb668a7cd27e972c46ce0f91ab4 /bootloader.py
parent7a3c395db8ac3e0db05acabd610758a555195556 (diff)
downloadanaconda-48153651a7519d0654b8c9685907a203464bc684.tar.gz
anaconda-48153651a7519d0654b8c9685907a203464bc684.tar.xz
anaconda-48153651a7519d0654b8c9685907a203464bc684.zip
more pychecker fixups
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/bootloader.py b/bootloader.py
index 6952b600e..2149de62b 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -26,6 +26,41 @@ from log import log
initrdsMade = {}
+## if 0:
+## if arch == "sparc":
+## errors = self.silo.install (self.fstab, instPath,
+## id.hdList, upgrade)
+## elif arch == "i386":
+## defaultlang = self.language.getLangNickByName(self.language.getDefault())
+## langlist = expandLangs(defaultlang)
+## errors = self.lilo.install (self.fstab, instPath,
+## id.hdList, upgrade, langlist)
+## elif arch == "ia64":
+## errors = self.eli.install (self.fstab, instPath,
+## id.hdList, upgrade)
+## elif arch == "alpha":
+## errors = self.milo.write ()
+## else:
+## raise RuntimeError, "What kind of machine is this, anyway?!"
+
+## if errors:
+## w.pop()
+## mess = _("An error occured while installing "
+## "the bootloader.\n\n"
+## "We HIGHLY recommend you make a recovery "
+## "boot floppy when prompted, otherwise you "
+## "may not be able to reboot into Red Hat Linux."
+## "\n\nThe error reported was:\n\n") + errors
+## intf.messageWindow(_("Bootloader Errors"), mess)
+
+## # make sure bootdisk window appears
+## if iutil.getArch () == "i386":
+## self.instClass.removeFromSkipList('bootdisk')
+## self.bootdisk = 1
+
+## w = apply(apply, createWindow)
+
+
class KernelArguments:
def get(self):