Changes between Version 83 and Version 84 of Docs/825gen2/Dev/UpdatingLegacyApps


Ignore:
Timestamp:
03/06/25 08:51:46 (6 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/UpdatingLegacyApps

    v83 v84  
    6565      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.
    6666
     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{{{
     69main()
     70{
     71   // ...
     72   MakeDirIfNotExists("/mnt/nand/apps/<projectname>");
     73   // ...
     74}
     75}}}
     76
    677726. 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.
    6878{{{