diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-10 03:14:21 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-10 03:14:21 +0000 |
commit | 53ab665d50509ad65c67d4ddaca650b7ae91dbcf (patch) | |
tree | 258d34696f346ff735f014d5b8b658676d036f71 /upgrade.py | |
parent | 6280955e6032ff1324f2ac226d8ddf5ec94e1f7f (diff) | |
download | anaconda-53ab665d50509ad65c67d4ddaca650b7ae91dbcf.tar.gz anaconda-53ab665d50509ad65c67d4ddaca650b7ae91dbcf.tar.xz anaconda-53ab665d50509ad65c67d4ddaca650b7ae91dbcf.zip |
non-ext2 upgrade support
Diffstat (limited to 'upgrade.py')
-rw-r--r-- | upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py index e41007251..903ee3bea 100644 --- a/upgrade.py +++ b/upgrade.py @@ -52,7 +52,7 @@ def mountRootPartition(intf, rootInfo, oldfsset, instPath, allowDirty = 0, if rootFs == "vfat": fsset.mountLoopbackRoot(root) else: - isys.mount(root, '/mnt/sysimage') + isys.mount(root, '/mnt/sysimage', rootFs) oldfsset.reset() newfsset = fsset.readFstab(instPath + '/etc/fstab') |