summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-02 21:57:54 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-02 21:57:54 +0000
commit7157a4ea77f0d3f8817ca7eb5c9c4a91f5d3f1fa (patch)
treeb81c2793c469b5695696db5d9c0f094556e0cddc /bootloader.py
parent5959fbcbc7105ad6c7a42df5179ad1ed07e4956d (diff)
downloadanaconda-7157a4ea77f0d3f8817ca7eb5c9c4a91f5d3f1fa.tar.gz
anaconda-7157a4ea77f0d3f8817ca7eb5c9c4a91f5d3f1fa.tar.xz
anaconda-7157a4ea77f0d3f8817ca7eb5c9c4a91f5d3f1fa.zip
fix dual boot
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader.py b/bootloader.py
index 1b30138aa..8d1b4b5d8 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -116,9 +116,9 @@ class BootImages:
for (dev, type) in devs:
if not self.images.has_key(dev):
if type == "FAT":
- self.images[dev] = ("DOS", type)
+ self.images[dev] = ("DOS", "DOS", type)
else:
- self.images[dev] = (None, type)
+ self.images[dev] = (None, None, type)
if not self.images.has_key(self.default):
entry = fsset.getEntryByMountPoint('/')