diff --git a/src/launcherlib/booster.cpp b/src/launcherlib/booster.cpp index b319f18..22e70d0 100644 --- a/src/launcherlib/booster.cpp +++ b/src/launcherlib/booster.cpp @@ -532,8 +532,9 @@ int Booster::launchProcess() // Load the application and find out the address of main() loadMain(); - // make booster specific initializations - preinit(); + // make booster specific initializations unless booster is in boot mode + if (!m_bootMode) + preinit(); #ifdef WITH_COVERAGE __gcov_flush();