Maemo: Add deployment via remote mount.

Only tested on Linux, #ifdef'ed for now.
This commit is contained in:
ck
2010-08-11 16:31:59 +02:00
parent 104f849579
commit 1ff13868dc
5 changed files with 371 additions and 29 deletions

View File

@@ -197,14 +197,15 @@ void MaemoSshRunner::handleUnmounted()
const MaemoRemoteMountsModel * const remoteMounts
= m_runConfig->remoteMounts();
for (int i = 0; i < remoteMounts->mountSpecificationCount(); ++i)
m_mounter->addMountSpecification(remoteMounts->mountSpecificationAt(i));
m_mounter->addMountSpecification(remoteMounts->mountSpecificationAt(i),
false);
if (m_debugging && m_runConfig->useRemoteGdb()) {
m_mounter->addMountSpecification(MaemoMountSpecification(
m_runConfig->localDirToMountForRemoteGdb(),
MaemoGlobal::remoteProjectSourcesMountPoint(),
m_devConfig.debuggingPort));
m_devConfig.debuggingPort), false);
}
m_mounter->mount(m_devConfig);
m_mounter->mount();
}
void MaemoSshRunner::handleMounted()