diff options
author | Erik Troan <ewt@redhat.com> | 1999-12-27 20:25:52 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-12-27 20:25:52 +0000 |
commit | 40a7ac8a2d293dae57751cc7074372b786287425 (patch) | |
tree | 23f2020ca1c56bff720d3ee225d93b5d3a7bd0a5 /textw | |
parent | 92660a36c7def307bb06319dcad468ba17199212 (diff) | |
download | anaconda-40a7ac8a2d293dae57751cc7074372b786287425.tar.gz anaconda-40a7ac8a2d293dae57751cc7074372b786287425.tar.xz anaconda-40a7ac8a2d293dae57751cc7074372b786287425.zip |
boot/root on raid should work now
Diffstat (limited to 'textw')
-rw-r--r-- | textw/lilo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/lilo.py b/textw/lilo.py index d86996c1d..1e242772a 100644 --- a/textw/lilo.py +++ b/textw/lilo.py @@ -58,7 +58,8 @@ class LiloWindow: if mount != '/': return INSTALL_NOOP if todo.skipLilo: return INSTALL_NOOP - (bootpart, boothd) = todo.getLiloOptions() + bootpart = self.fstab.getBootDevice() + boothd = self.fstab.getMbrDevice() if (todo.getLiloLocation () == "mbr"): default = 0 |