Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -r99a56ec30f1ca4f401e744766bde4f6fac291752 -raad2e406efd1fc2589a19004eb86ca6277f41aea --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 99a56ec30f1ca4f401e744766bde4f6fac291752) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision aad2e406efd1fc2589a19004eb86ca6277f41aea) @@ -33,18 +33,31 @@ const char *USB_File_System = "vfat"; // SD-CARD -#ifdef BUILD_FOR_POKY + const short Available_Space_Percent = 15; // currently 16GB SD-Card so 2.4GB should always be available. +#ifdef BUILD_FOR_TARGET const char *SDCard_Base_Path_Name = "/media/sd-card/"; #else // should not be in the project application folder. [not tracking by git] - const char *SDCard_Base_Path_Name = "/home/denali/Desktop/sd-card/"; + const char *SDCard_Base_Path_Name = "/media/denali/USB DISK"; #endif // Settings -#ifdef BUILD_FOR_POKY +#ifdef BUILD_FOR_TARGET const char *Settings_Path_Name = "/home/root/.config/"; #else // should be in the project application folder. [is tracking by git] const char *Settings_Path_Name = "/home/denali/Projects/application/resources/settings/"; #endif + + + // Scripts +#ifdef BUILD_FOR_TARGET + const char *Scripts_Path_Name = "/home/root/scripts/"; +#else + // should be in the project application folder. [is tracking by git] + const char *Scripts_Path_Name = "/home/denali/Projects/application/scripts/"; +#endif + + // Date and Time + const char *Date_Time_Set_Sh = "date_time_set.sh"; }