diff options
author | Erik Troan <ewt@redhat.com> | 2001-02-10 01:15:11 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-02-10 01:15:11 +0000 |
commit | 91670ee8fe16a7122774edeb4a209f9bb73362ba (patch) | |
tree | c627a12fb962545867596396fa01413b47e7876d | |
parent | 5cfc4859f52f9aec1a94919f251bf6032e3be534 (diff) | |
download | anaconda-91670ee8fe16a7122774edeb4a209f9bb73362ba.tar.gz anaconda-91670ee8fe16a7122774edeb4a209f9bb73362ba.tar.xz anaconda-91670ee8fe16a7122774edeb4a209f9bb73362ba.zip |
fixed to actually work with split header lists
-rw-r--r-- | harddrive.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/harddrive.py b/harddrive.py index 500ddc5bb..f7067692f 100644 --- a/harddrive.py +++ b/harddrive.py @@ -71,6 +71,7 @@ class OldHardDriveInstallMethod(InstallMethod): def mergeFullHeaders(self, hdlist): # since we read headers from the disk, we don't need to do this + pass def systemMounted(self, fstab, mntPoint, selected): self.mountMedia() @@ -176,7 +177,9 @@ class HardDriveInstallMethod(InstallMethod): return hl def mergeFullHeaders(self, hdlist): - # since we read headers from the disk, we don't need to do this + self.mountMedia(1) + hdlist.mergeFullHeaders(self.tree + "/RedHat/base/hdlist2") + self.umountMedia() def systemMounted(self, fstab, mntPoint, selected): self.mountMedia(1) |