summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-02-10 01:15:11 +0000
committerErik Troan <ewt@redhat.com>2001-02-10 01:15:11 +0000
commit91670ee8fe16a7122774edeb4a209f9bb73362ba (patch)
treec627a12fb962545867596396fa01413b47e7876d /harddrive.py
parent5cfc4859f52f9aec1a94919f251bf6032e3be534 (diff)
downloadanaconda-91670ee8fe16a7122774edeb4a209f9bb73362ba.tar.gz
anaconda-91670ee8fe16a7122774edeb4a209f9bb73362ba.tar.xz
anaconda-91670ee8fe16a7122774edeb4a209f9bb73362ba.zip
fixed to actually work with split header lists
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py5
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)