Index: sources/ApplicationController.cpp =================================================================== diff -u -raf0eb3014623933ce3cffac481477d11b3b9c5b5 -r8d5fe7d63e3d86e9d89d5f824347d34479e4e9ec --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision af0eb3014623933ce3cffac481477d11b3b9c5b5) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 8d5fe7d63e3d86e9d89d5f824347d34479e4e9ec) @@ -7,7 +7,7 @@ * * \file ApplicationController.cpp * \author (last) Behrouz NematiPour - * \date (last) 18-Jul-2023 + * \date (last) 19-Jul-2023 * \author (original) Behrouz NematiPour * \date (original) 26-Aug-2020 * @@ -621,12 +621,12 @@ void ApplicationController::onPOSTDone(bool /*vPass*/) { LOG_DEBUG("ApplicationPOST Done"); - /// in manufacturing mode the configurations must reside in /root/home + /// in manufacturing or update mode the configurations must reside in /root/home /// therefore the settings can be initialized after POST. #ifdef BUILD_FOR_DESKTOP initSettings(); #else - if ( gEnableManufacturing ) initSettings(); + if ( gEnableManufacturing || gEnableUpdating ) initSettings(); #endif }