Changes between Version 62 and Version 63 of Docs/825gen2/Dev/UpdatingLegacyApps


Ignore:
Timestamp:
02/19/25 14:39:43 (5 days ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v62 v63  
    616124. In the /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.
    6262{{{
    63 
     63#!/bin/sh
     64# Create tgz archive for app distribution
     65# Archive will contains app executable, signature file, and may have a bmp file
     66# to show on the application menu button.
     67# The menu icon must be saved as a 24-bit bmp. The width should be an even 4 pixels
     68# such as 280 x 180
     69# Additional files may be added. Documentation files (pdf format) will be available
     70# to view on the indicator in chromium from help/about screen.
     71tar -czvf //projectname//.tgz //projectname// //projectname//.8sg //projectname//.bmp //projectname//.pdf
    6472}}}
    6573