[initramfs] Drop timeout entirely, even two minutes too short

This commit is contained in:
Adriaan de Groot 2019-07-04 20:05:48 +02:00
parent efd409cf78
commit d5340f9743

View File

@ -45,7 +45,7 @@ InitramfsJob::exec()
cDebug() << "Updating initramfs with kernel" << m_kernel; cDebug() << "Updating initramfs with kernel" << m_kernel;
auto r = CalamaresUtils::System::instance()->targetEnvCommand( auto r = CalamaresUtils::System::instance()->targetEnvCommand(
{ "update-initramfs", "-k", m_kernel, "-c", "-t" }, QString(), QString(), 120 ); { "update-initramfs", "-k", m_kernel, "-c", "-t" }, QString(), QString(), 0 );
return r.explainProcess( "update-initramfs", 10 ); return r.explainProcess( "update-initramfs", 10 );
} }