Overview
| Comment: | Updated with basic documentation | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 4ff216889c00df19c72079b01b6039a1 | 
| User & Date: | rkeene on 2014-09-07 07:07:31 | 
| Other Links: | manifest | tags | 
Context
| 2014-09-07 | ||
| 10:38 | Updated to use Tcl to do all the heavy lifting check-in: 1ef1b92a15 user: rkeene tags: trunk | |
| 07:07 | Updated with basic documentation check-in: 4ff216889c user: rkeene tags: trunk | |
| 06:42 | Updated to use PKG_CONFIG check-in: 777947ec3d user: rkeene tags: trunk | |
Changes
Added .fossil-settings/ignore-glob version [1fd80210c8].
| > > | 1 2 | appfs appfs.o | 
Added README.md version [e24612c7fa].
| > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 
AppFS
=====
It's sort of like LazyFS.
Paths
-----
AppFS should normally be mounted on "/opt/appfs".
/opt/appfs/hostname
	Fetches: http://hostname/appfs/index
	Contains CSV file: type,extraData
		type == package; extraData = package,version,os,cpuArch,sha1
		type == latest; extradata = package,version,os,cpuArch
/opt/appfs/hostname/package/os-cpuArch/version
/opt/appfs/hostname/sha1/
	Fetches: http://hostname/appfs/<sha1>
	Contains CSV file:
		type,time,extraData,name
		type == directory; extraData = (null)
		type == symlink; extraData = source
		type == file; extraData = size,sha1
/opt/appfs/hostname/{sha1,package/os-cpuArch/version}/file
	Fetches: http://hostname/appfs/<sha1>
 |