summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-02-10 00:44:59 +0000
committerErik Troan <ewt@redhat.com>2001-02-10 00:44:59 +0000
commit5cfc4859f52f9aec1a94919f251bf6032e3be534 (patch)
tree2abc3b38f8c8f9cfcfd0ba62a10d2d1c534ade44 /harddrive.py
parenta2d421d00db7b203e6a4ce79475c3ae51a772684 (diff)
downloadanaconda-5cfc4859f52f9aec1a94919f251bf6032e3be534.tar.gz
anaconda-5cfc4859f52f9aec1a94919f251bf6032e3be534.tar.xz
anaconda-5cfc4859f52f9aec1a94919f251bf6032e3be534.zip
use two part header lists
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/harddrive.py b/harddrive.py
index 3e6851c31..500ddc5bb 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -69,6 +69,9 @@ class OldHardDriveInstallMethod(InstallMethod):
self.umountMedia()
return HeaderList(hl)
+ def mergeFullHeaders(self, hdlist):
+ # since we read headers from the disk, we don't need to do this
+
def systemMounted(self, fstab, mntPoint, selected):
self.mountMedia()
@@ -172,6 +175,9 @@ class HardDriveInstallMethod(InstallMethod):
return hl
+ def mergeFullHeaders(self, hdlist):
+ # since we read headers from the disk, we don't need to do this
+
def systemMounted(self, fstab, mntPoint, selected):
self.mountMedia(1)