Changes between Version 83 and Version 84 of Docs/825gen2/Dev/UpdatingLegacyApps
- Timestamp:
- 03/06/25 08:51:46 (6 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/UpdatingLegacyApps
v83 v84 65 65 If the data directory does not exist when running the app it is likely the display will show error messages about failing to write/read setup, configuration, or database files. 66 66 67 It may also be desirable to add the command upon app startup to check and create the directory if it does not exist. 68 {{{ 69 main() 70 { 71 // ... 72 MakeDirIfNotExists("/mnt/nand/apps/<projectname>"); 73 // ... 74 } 75 }}} 76 67 77 26. In the VM /srv/nfs/arm825/mnt/nand/apps/<projectname> directory it is helpful to create a script "mktgz.sh" to generate a release package to give to customers to install the app. 68 78 {{{