summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index d8006a281..f5b5bee62 100644
--- a/packages.py
+++ b/packages.py
@@ -38,6 +38,7 @@ import traceback
from flags import flags
from product import *
from constants import *
+from upgrade import bindMountDevDirectory
import logging
log = logging.getLogger("anaconda")
@@ -101,7 +102,8 @@ def doMigrateFilesystems(anaconda):
anaconda.id.fsset.makeLVMNodes(anaconda.rootPath, trylvm1 = 1)
# and we should write out a new fstab with the migrated fstype
anaconda.id.fsset.write(anaconda.rootPath)
-
+ # and make sure /dev is mounted so we can read the bootloader
+ bindMountDevDirectory(anaconda.rootPath)
def turnOnFilesystems(anaconda):
def handleResizeError(e, dev):