Index: main.cpp =================================================================== diff -u -r6e47dacddee3eb819703dc1ba30386f8272869cb -r472c10e72a8d278f13d2343f9c81c1def14490ff --- main.cpp (.../main.cpp) (revision 6e47dacddee3eb819703dc1ba30386f8272869cb) +++ main.cpp (.../main.cpp) (revision 472c10e72a8d278f13d2343f9c81c1def14490ff) @@ -50,7 +50,6 @@ #include "GuiController.h" #include "Logger.h" #include "DeviceController.h" -#include "WifiInterface.h" #include "BluetoothInterface.h" #include "CloudSyncController.h" //AMIR @@ -504,10 +503,10 @@ // and all the files are copied to the /home/root/ to later be copied to secured locations // and that will be done by lockdown.sh script running within application after the user is done with the setup and QUIT s the application. if ( gEnableManufacturing || gEnableUpdating ) { - QString scriptName = Storage::Device_Lockdown; + QString scriptName = Storage::Scripts_Device_Lockdown; quint16 errorCode; QString errorText; - errorCode = Device::DeviceError::checkScript (scriptName, Storage::Device_Lockdown ); + errorCode = Device::DeviceError::checkScript (scriptName, Storage::Scripts_Device_Lockdown ); errorText = Device::DeviceError::deviceErrorText( static_cast(errorCode), 1); qDebug() << errorText; // since we are in the manufacturing mode it is possible to probably take a look at the serial, if not that is being logged. #ifdef BUILD_FOR_TARGET @@ -630,9 +629,6 @@ //! - Initializing Main Timer _MainTimer.init(); - //! - Initializing WiFi Interface - _WifiInterface.init(Threads::_Wifi_Thread); - //! - Initializing Bluetooth Interface _BluetoothInterface.init(Threads::_Bluetooth_Thread);