summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
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)