summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-05-30 22:00:38 +0000
committerJeremy Katz <katzj@redhat.com>2002-05-30 22:00:38 +0000
commit73c71e5f54603561e85da669164a5a1e8f47ac18 (patch)
treedca1f73220bafad8e170b0907177f68ffb2f3436 /textw
parentc7277bcd2ee35a8cce0adbda8c7664eb914fc66e (diff)
downloadanaconda-73c71e5f54603561e85da669164a5a1e8f47ac18.tar.gz
anaconda-73c71e5f54603561e85da669164a5a1e8f47ac18.tar.xz
anaconda-73c71e5f54603561e85da669164a5a1e8f47ac18.zip
rootOnLoop cases should be dead
Diffstat (limited to 'textw')
-rw-r--r--textw/bootdisk_text.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/textw/bootdisk_text.py b/textw/bootdisk_text.py
index c5d74f0f3..9afe1e342 100644
--- a/textw/bootdisk_text.py
+++ b/textw/bootdisk_text.py
@@ -19,10 +19,6 @@ from constants import *
class BootDiskWindow:
def __call__(self, screen, dir, disp, fsset):
- if fsset.rootOnLoop():
- disp.skipStep("makebootdisk", skip=0)
- return INSTALL_NOOP
-
buttons = [ _("Yes"), _("No") ]
text = _("A custom boot disk provides a way of booting into your "
"Linux system without depending on the normal boot loader. "
@@ -62,10 +58,7 @@ class BootDiskWindow:
class MakeBootDiskWindow:
def __call__ (self, screen, dir, disp, fsset):
- if fsset.rootOnLoop():
- buttons = [ _("OK") ]
- else:
- buttons = [ _("OK"), _("Skip") ]
+ buttons = [ _("OK"), _("Skip") ]
# This is a bit gross. This lets the first bootdisk screen skip
# this one if the user doesn't want to see it.
@@ -80,10 +73,6 @@ class MakeBootDiskWindow:
"diskette. All data will be ERASED "
"during creation of the boot disk.") % (productName,)
- if fsset.rootOnLoop():
- text = text + _("\n\nA boot disk is REQUIRED to boot a "
- "partitionless install.")
-
rc = ButtonChoiceWindow (screen, _("Boot Disk"),
text, buttons, help="insertbootdisk")