From ca393d0a44a4975c0c07cf9eebcc83dbed274616 Mon Sep 17 00:00:00 2001 From: Rohan Garg Date: Mon, 10 Aug 2015 13:48:47 +0200 Subject: [PATCH] Set the default rootMountPoint when not chroot'ing --- src/libcalamares/utils/CalamaresUtilsSystem.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcalamares/utils/CalamaresUtilsSystem.cpp b/src/libcalamares/utils/CalamaresUtilsSystem.cpp index f0885197d..1081169f9 100644 --- a/src/libcalamares/utils/CalamaresUtilsSystem.cpp +++ b/src/libcalamares/utils/CalamaresUtilsSystem.cpp @@ -38,6 +38,8 @@ System::System( bool doChroot, QObject* parent ) { Q_ASSERT( !s_instance ); s_instance = this; + if ( !doChroot ) + Calamares::JobQueue::instance()->globalStorage()->insert( "rootMountPoint", "/" ); }