diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-11-27 23:00:57 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-11-27 23:00:57 +0000 |
commit | 352cb8943d4607767ed69e6e02db619b799a9a10 (patch) | |
tree | 0abb82432e6c61281e33fece7df309773ee125d1 /upgrade.py | |
parent | 2917e440afa82045a8f1e3fbfabf642c6b9bb69c (diff) | |
download | anaconda-352cb8943d4607767ed69e6e02db619b799a9a10.tar.gz anaconda-352cb8943d4607767ed69e6e02db619b799a9a10.tar.xz anaconda-352cb8943d4607767ed69e6e02db619b799a9a10.zip |
more /mnt/sysimage surgery
Diffstat (limited to 'upgrade.py')
-rw-r--r-- | upgrade.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/upgrade.py b/upgrade.py index 837fc4255..1f595a9d7 100644 --- a/upgrade.py +++ b/upgrade.py @@ -56,7 +56,7 @@ def mountRootPartition(intf, rootInfo, oldfsset, instPath, allowDirty = 0, diskset.startAllRaid() if rootFs == "vfat": - mountLoopbackRoot(root) + mountLoopbackRoot(root, mountpoint = instPath) else: isys.mount(root, instPath, rootFs) @@ -66,7 +66,7 @@ def mountRootPartition(intf, rootInfo, oldfsset, instPath, allowDirty = 0, oldfsset.add(entry) if rootFs == "vfat": - unmountLoopbackRoot() + unmountLoopbackRoot(mountpoint = instPath) else: isys.umount(instPath) |