Add runtime metadata

This commit is contained in:
Ehmry - 2019-03-08 21:22:26 +01:00
parent 6e24f5fba0
commit 7a3f231d0b
6 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,2 @@
include_rules
include $(NIMBLE_PACKAGE_INCLUDE)

View File

@ -0,0 +1,3 @@
@SDK_USER@/src/libc/@SDK_VERSION@
@SDK_USER@/src/vfs/@SDK_VERSION@
@DEPOT_USER@/src/blobsets/@DEPOT_VERSION@

View File

@ -0,0 +1,29 @@
<runtime ram="32M" caps="256" binary="blobsets_fs">
<requires>
<file_system label="blobstore"/>
<rtc/>
</requires>
<provides>
<file_system/>
</provides>
<content>
<rom label="blobsets_fs"/>
<rom label="libc.lib.so"/>
<rom label="libm.lib.so"/>
<rom label="vfs.lib.so"/>
</content>
<config>
<libc stdout="/log" stderr="/log" rtc="/rtc"/>
<vfs>
<log/> <rtc/>
<dir name="store">
<fs label="blobstore" writeable="no" root="blobsets"/> </dir>
</vfs>
<default-policy/>
</config>
</runtime>

View File

@ -0,0 +1,2 @@
include_rules
include $(NIMBLE_PACKAGE_INCLUDE)

View File

@ -0,0 +1,4 @@
@SDK_USER@/src/libc/@SDK_VERSION@
@SDK_USER@/src/vfs_lwip/@SDK_VERSION@
@SDK_USER@/src/vfs/@SDK_VERSION@
@DEPOT_USER@/src/blobsets/@DEPOT_VERSION@

View File

@ -0,0 +1,26 @@
<runtime ram="32M" caps="512" binary="blobsets_http">
<requires>
<file_system label="blobstore"/>
<nic/>
</requires>
<content>
<rom label="blobsets_http"/>
<rom label="libc.lib.so"/>
<rom label="libm.lib.so"/>
<rom label="vfs.lib.so"/>
<rom label="vfs_lwip.lib.so"/>
</content>
<config>
<libc stdout="/log" stderr="/log" socket="/socket"/>
<vfs>
<log/>
<dir name="socket"> <lwip dhcp="yes"/> </dir>
<dir name="store">
<fs label="blobstore" writeable="yes" root="blobsets"/> </dir>
</vfs>
</config>
</runtime>