diff options
Diffstat (limited to 'textw')
-rw-r--r-- | textw/lilo_text.py | 248 | ||||
-rw-r--r-- | textw/silo_text.py | 257 |
2 files changed, 505 insertions, 0 deletions
diff --git a/textw/lilo_text.py b/textw/lilo_text.py new file mode 100644 index 000000000..f22531d7b --- /dev/null +++ b/textw/lilo_text.py @@ -0,0 +1,248 @@ +#import gettext +from snack import * +from textw.constants import * +from translate import _ +import string + +#cat = gettext.Catalog ("anaconda", "/usr/share/locale") +#_ = cat.gettext + +class LiloAppendWindow: + + def __call__(self, screen, todo): + if not todo.fstab.setupFilesystems or todo.fstab.rootOnLoop(): + todo.skipLilo = 1 + return INSTALL_NOOP + + t = TextboxReflowed(53, + _("A few systems will need to pass special options " + "to the kernel at boot time for the system to function " + "properly. If you need to pass boot options to the " + "kernel, enter them now. If you don't need any or " + "aren't sure, leave this blank.")) + + cb = Checkbox(_("Use linear mode (needed for some SCSI drives)"), + isOn = todo.lilo.getLinear()) + entry = Entry(48, scroll = 1, returnExit = 1) + if todo.lilo.getAppend(): + entry.set(todo.lilo.getAppend()) + + buttons = ButtonBar(screen, [(_("OK"), "ok"), (_("Skip"), "skip"), + (_("Back"), "back") ] ) + + grid = GridForm(screen, _("LILO Configuration"), 1, 4) + grid.add(t, 0, 0) + grid.add(cb, 0, 1, padding = (0, 1, 0, 1)) + grid.add(entry, 0, 2, padding = (0, 0, 0, 1)) + grid.add(buttons, 0, 3, growx = 1) + + result = grid.runOnce () + button = buttons.buttonPressed(result) + + if button == "back": + return INSTALL_BACK + + if button == "skip": + todo.skipLilo = 1 + todo.lilo.setDevice(None) + else: + todo.skipLilo = 0 + + todo.lilo.setLinear(cb.selected()) + if entry.value(): + todo.lilo.setAppend(string.strip(entry.value())) + else: + todo.lilo.setAppend(None) + + return INSTALL_OK + +class LiloWindow: + def __call__(self, screen, todo): + if not todo.setupFilesystems: return INSTALL_NOOP + (mount, dev, fstype, format, size) = todo.fstab.mountList()[0] + if mount != '/': return INSTALL_NOOP + if todo.skipLilo: return INSTALL_NOOP + + if not todo.lilo.allowLiloLocationConfig(todo.fstab): + return INSTALL_NOOP + + bootpart = todo.fstab.getBootDevice() + boothd = todo.fstab.getMbrDevice() + + if (todo.lilo.getDevice () == "mbr"): + default = 0 + elif (todo.lilo.getDevice () == "partition"): + default = 1 + else: + default = 0 + + format = "/dev/%-11s %s" + locations = [] + locations.append (format % (boothd, "Master Boot Record (MBR)")) + locations.append (format % (bootpart, "First sector of boot partition")) + + (rc, sel) = ListboxChoiceWindow (screen, _("LILO Configuration"), + _("Where do you want to install the bootloader?"), + locations, default = default, + buttons = [ _("OK"), _("Back") ]) + + if sel == 0: + todo.lilo.setDevice("mbr") + else: + todo.lilo.setDevice("partition") + + if rc == string.lower (_("Back")): + return INSTALL_BACK + return INSTALL_OK + +class LiloImagesWindow: + def editItem(self, screen, partition, itemLabel): + devLabel = Label(_("Device") + ":") + bootLabel = Label(_("Boot label") + ":") + device = Label("/dev/" + partition) + newLabel = Entry (20, scroll = 1, returnExit = 1, text = itemLabel) + + buttons = ButtonBar(screen, [(_("Ok"), "ok"), (_("Clear"), "clear"), + (_("Cancel"), "cancel")]) + + subgrid = Grid(2, 2) + subgrid.setField(devLabel, 0, 0, anchorLeft = 1) + subgrid.setField(device, 1, 0, padding = (1, 0, 0, 0), anchorLeft = 1) + subgrid.setField(bootLabel, 0, 1, anchorLeft = 1) + subgrid.setField(newLabel, 1, 1, padding = (1, 0, 0, 0), anchorLeft = 1) + + g = GridForm(screen, _("Edit Boot Label Please"), 1, 2) + g.add(subgrid, 0, 0, padding = (0, 0, 0, 1)) + g.add(buttons, 0, 1, growx = 1) + + result = "" + while (result != "ok" and result != "F12" and result != newLabel): + result = g.run() + + if (buttons.buttonPressed(result)): + result = buttons.buttonPressed(result) + + if (result == "cancel"): + screen.popWindow () + return itemLabel + elif (result == "clear"): + newLabel.set("") + elif (result == "ok" or result == "F12" or result == newLabel): + import regex + + if (regex.search (" ", newLabel.value()) != -1): + rc = ButtonChoiceWindow (screen, _("Invalid Boot Label"), + _("Boot labels cannot contain " + "space(s)."), + [ _("OK") ]) + result = "" + + screen.popWindow() + + return newLabel.value() + + def formatDevice(self, type, label, device, default): + if (type == 2): + type = "Linux Native" + elif (type == 1): + type = "DOS/Windows" + elif (type == 4): + type = "OS/2 / Windows NT" + else: + type = "Other" + + if default == device: + default = '*' + else: + default = "" + + return "%-10s %-25s %-7s %-10s" % ( "/dev/" + device, type, default, label) + + def __call__(self, screen, todo): + (images, default) = todo.lilo.getLiloImages(todo.fstab) + if not images: return INSTALL_NOOP + if todo.skipLilo: return INSTALL_NOOP + + # the default item is kept as a label (which makes more sense for the + # user), but we want our listbox "indexed" by device, which so we keep + # the default item as a device + for (dev, (label, type)) in images.items(): + if label == default: + default = dev + break + + sortedKeys = images.keys() + sortedKeys.sort() + + listboxLabel = Label("%-10s %-25s %-7s %-10s" % + ( _("Device"), _("Partition type"), _("Default"), _("Boot label"))) + listbox = Listbox(5, scroll = 1, returnExit = 1) + + for n in sortedKeys: + (label, type) = images[n] + listbox.append(self.formatDevice(type, label, n, default), n) + if n == default: + listbox.setCurrent(n) + + buttons = ButtonBar(screen, [ (_("Ok"), "ok"), (_("Edit"), "edit"), + (_("Back"), "back") ] ) + + text = TextboxReflowed(55, + _("The boot manager Red Hat uses can boot other " + "operating systems as well. You need to tell me " + "what partitions you would like to be able to boot " + "and what label you want to use for each of them.\n\n" + "Press the F2 key to select the partition to boot by " + "default.")) + + g = GridForm(screen, _("LILO Configuration"), 1, 4) + g.add(text, 0, 0, anchorLeft = 1) + g.add(listboxLabel, 0, 1, padding = (0, 1, 0, 0), anchorLeft = 1) + g.add(listbox, 0, 2, padding = (0, 0, 0, 1), anchorLeft = 1) + g.add(buttons, 0, 3, growx = 1) + g.addHotKey("F2") + + result = None + while (result != "ok" and result != "back" and result != "F12"): + result = g.run() + if (buttons.buttonPressed(result)): + result = buttons.buttonPressed(result) + + if (result == string.lower(_("Edit")) or result == listbox): + item = listbox.current() + (label, type) = images[item] + label = self.editItem(screen, item, label) + images[item] = (label, type) + if (default == item and not label): + default = "" + listbox.replace(self.formatDevice(type, label, item, default), item) + listbox.setCurrent(item) + elif result == "F2": + item = listbox.current() + (label, type) = images[item] + if (label): + if (default): + (oldLabel, oldType) = images[default] + listbox.replace(self.formatDevice(oldType, oldLabel, default, + ""), default) + default = item + listbox.replace(self.formatDevice(type, label, item, default), + item) + listbox.setCurrent(item) + + screen.popWindow() + + if (result == "back"): + return INSTALL_BACK + + # find the label for the default device + for (dev, (label, type)) in images.items(): + if dev == default: + default = label + break + + todo.lilo.setLiloImages(images) + todo.lilo.setDefault(label) + + return INSTALL_OK + diff --git a/textw/silo_text.py b/textw/silo_text.py new file mode 100644 index 000000000..5f8ab7e2e --- /dev/null +++ b/textw/silo_text.py @@ -0,0 +1,257 @@ +#import gettext +import iutil +from snack import * +from textw.constants import * +from translate import _ + +#cat = gettext.Catalog ("anaconda", "/usr/share/locale") +#_ = cat.gettext + +class SiloAppendWindow: + + def __call__(self, screen, todo): + t = TextboxReflowed(53, + _("A few systems will need to pass special options " + "to the kernel at boot time for the system to function " + "properly. If you need to pass boot options to the " + "kernel, enter them now. If you don't need any or " + "aren't sure, leave this blank.")) + + entry = Entry(48, scroll = 1, returnExit = 1) + + if todo.silo.getAppend(): + entry.set(todo.silo.getAppend()) + + buttons = ButtonBar(screen, [(_("OK"), "ok"), (_("Skip"), "skip"), + (_("Back"), "back") ] ) + + grid = GridForm(screen, _("SILO Configuration"), 1, 3) + grid.add(t, 0, 0) + grid.add(entry, 0, 1, padding = (0, 0, 0, 1)) + grid.add(buttons, 0, 2, growx = 1) + + result = grid.runOnce () + button = buttons.buttonPressed(result) + + if button == "back": + return INSTALL_BACK + + if button == "skip": + todo.skipLilo = 1 + todo.silo.setDevice(None) + else: + todo.skipLilo = 0 + + if entry.value(): + todo.silo.setAppend(string.strip(entry.value())) + else: + todo.silo.setAppend(None) + + return INSTALL_OK + +class SiloWindow: + def __call__(self, screen, todo): + (mount, dev, fstype, format, size) = todo.fstab.mountList()[0] + if mount != '/': return INSTALL_NOOP + if todo.skipLilo: return INSTALL_NOOP + + bootpart = todo.fstab.getBootDevice() + boothd = todo.silo.getMbrDevice(todo.fstab) + + format = "/dev/%-11s %s%*s" + # FIXME: Should be Master Boot Records (MBR) in RAID1 case + str1 = _("Master Boot Record (MBR)") + str2 = _("First sector of boot partition") + str3 = _("Create PROM alias `linux'") + str4 = _("Set default PROM boot device") + len1 = len(str1) + 17 + len2 = len(str2) + 17 + len3 = len(str3) + len4 = len(str4) + lenmax = max((len1, len2, len3, len4)) + if todo.silo.getSiloMbrDefault(todo.fstab) == 'mbr': + dflt = 1 + else: + dflt = 0 + bootdisk = boothd + if bootpart[:2] == "md": + bootdisk = bootpart + rc1 = SingleRadioButton (format % (bootdisk, str1, lenmax - len1, ""), None, dflt ) + rc2 = SingleRadioButton (format % (bootpart, str2, lenmax - len2, ""), rc1, 1 - dflt) + if bootpart[:2] == "md": + rc1.setFlags (FLAG_DISABLED, FLAGS_SET) + rc2.setFlags (FLAG_DISABLED, FLAGS_SET) + + bootdisk = bootpart + if bootpart[:2] == "md": + bootdisk = boothd + prompath = todo.silo.disk2PromPath(bootdisk) + if prompath and len(prompath) > 0 and todo.silo.hasAliases(): + default = 1 + else: + default = 0 + linuxAlias = Checkbox ("%s%*s" % (str3, lenmax - len3, ""), default) + if not default: + linuxAlias.setFlags (FLAG_DISABLED, FLAGS_SET) + bootDevice = Checkbox ("%s%*s" % (str4, lenmax - len4, ""), 1) + + bb = ButtonBar (screen, ((_("OK"), "ok"), (_("Back"), "back"))) + + g = GridForm (screen, _("SILO Configuration"), 1, 8) + + g.add (Label (_("Where do you want to install the bootloader?")), 0, 0) + g.add (rc1, 0, 1) + g.add (rc2, 0, 2, padding = (0, 0, 0, 1)) + g.add (linuxAlias, 0, 3) + g.add (bootDevice, 0, 4, padding = (0, 0, 0, 1)) + g.add (bb, 0, 5, growx = 1) + + result = g.runOnce() + + if rc1.selected(): + todo.silo.setDevice("mbr") + else: + todo.silo.setDevice("partition") + + lAlias = linuxAlias.selected() != 0 + bDevice = bootDevice.selected() != 0 + + todo.silo.setPROM(lAlias, bDevice) + + rc = bb.buttonPressed (result) + + if rc == "back": + return INSTALL_BACK + return INSTALL_OK + + +class SiloImagesWindow: + def editItem(self, screen, partition, itemLabel): + devLabel = Label(_("Device") + ":") + bootLabel = Label(_("Boot label") + ":") + device = Label("/dev/" + partition) + newLabel = Entry (20, scroll = 1, returnExit = 1, text = itemLabel) + + buttons = ButtonBar(screen, [_("Ok"), _("Clear"), _("Cancel")]) + + subgrid = Grid(2, 2) + subgrid.setField(devLabel, 0, 0, anchorLeft = 1) + subgrid.setField(device, 1, 0, padding = (1, 0, 0, 0), anchorLeft = 1) + subgrid.setField(bootLabel, 0, 1, anchorLeft = 1) + subgrid.setField(newLabel, 1, 1, padding = (1, 0, 0, 0), anchorLeft = 1) + + g = GridForm(screen, _("Edit Boot Label"), 1, 2) + g.add(subgrid, 0, 0, padding = (0, 0, 0, 1)) + g.add(buttons, 0, 1, growx = 1) + + result = "" + while (result != string.lower(_("Ok")) and result != newLabel): + result = g.run() + if (buttons.buttonPressed(result)): + result = buttons.buttonPressed(result) + + if (result == string.lower(_("Cancel"))): + screen.popWindow () + return itemLabel + elif (result == string.lower(_("Clear"))): + newLabel.set("") + + screen.popWindow() + + return newLabel.value() + + def formatDevice(self, type, label, device, default): + if (type == 2): + type = "Linux extended" + elif (type == 6): + type = "UFS" + else: + type = "Other" + + if default == device: + default = '*' + else: + default = "" + + return "%-10s %-25s %-7s %-10s" % ( "/dev/" + device, type, default, label) + + def __call__(self, screen, todo): + (images, default) = todo.silo.getSiloImages(todo.fstab) + if not images: return INSTALL_NOOP + if todo.skipLilo: return INSTALL_NOOP + + # the default item is kept as a label (which makes more sense for the + # user), but we want our listbox "indexed" by device, which so we keep + # the default item as a device + for (dev, (label, type)) in images.items(): + if label == default: + default = dev + break + + sortedKeys = images.keys() + sortedKeys.sort() + + listboxLabel = Label("%-10s %-25s %-7s %-10s" % + ( _("Device"), _("Partition type"), _("Default"), _("Boot label"))) + listbox = Listbox(5, scroll = 1, returnExit = 1) + + for n in sortedKeys: + (label, type) = images[n] + listbox.append(self.formatDevice(type, label, n, default), n) + if n == default: + listbox.setCurrent(n) + + buttons = ButtonBar(screen, [ (_("Ok"), "ok"), (_("Edit"), "edit"), + (_("Back"), "back") ] ) + + text = TextboxReflowed(55, _("The boot manager Red Hat uses can boot other " + "operating systems as well. You need to tell me " + "what partitions you would like to be able to boot " + "and what label you want to use for each of them.")) + + title = _("SILO Configuration") + g = GridForm(screen, title, 1, 4) + g.add(text, 0, 0, anchorLeft = 1) + g.add(listboxLabel, 0, 1, padding = (0, 1, 0, 0), anchorLeft = 1) + g.add(listbox, 0, 2, padding = (0, 0, 0, 1), anchorLeft = 1) + g.add(buttons, 0, 3, growx = 1) + g.addHotKey("F2") + + result = None + while (result != "ok" and result != "back" and result != "F12"): + result = g.run() + if (buttons.buttonPressed(result)): + result = buttons.buttonPressed(result) + + if (result == string.lower(_("Edit")) or result == listbox): + item = listbox.current() + (label, type) = images[item] + label = self.editItem(screen, item, label) + images[item] = (label, type) + if (default == item and not label): + default = "" + listbox.replace(self.formatDevice(type, label, item, default), item) + listbox.setCurrent(item) + elif result == "F2": + item = listbox.current() + (label, type) = images[item] + if (label): + if (default): + (oldLabel, oldType) = images[default] + listbox.replace(self.formatDevice(oldType, oldLabel, default, + ""), default) + default = item + listbox.replace(self.formatDevice(type, label, item, default), + item) + listbox.setCurrent(item) + + screen.popWindow() + + if (result == "back"): + return INSTALL_BACK + + todo.silo.setSiloImages(images) + todo.silo.setDefault(label) + + return INSTALL_OK + |