- Adjust use of exceptions to unified exception types: https://genode.org/documentation/release-notes/17.05#Streamlining_exception_types - Add posix.lib.so as boot module: http://genode.org/documentation/release-notes/17.05#POSIX_libc_profile_as_shared_library - Adaptation to API changes Ref #74
44 lines
824 B
Plaintext
44 lines
824 B
Plaintext
set build_components { app/ltris server/ram_fs }
|
|
|
|
set app_config {
|
|
|
|
<start name="ram_fs" priority="-1">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides> <service name="File_system"/> </provides>
|
|
<config>
|
|
<default-policy root="/" writeable="yes" />
|
|
<content>
|
|
<dir name="var"/>
|
|
</content>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="ltris" priority="-2">
|
|
<resource name="RAM" quantum="64M"/>
|
|
<config>
|
|
<libc stdout="/dev/log" stderr="/dev/log" >
|
|
<vfs>
|
|
<tar name="ltris_data.tar" />
|
|
<dir name="dev"> <log/> </dir>
|
|
<fs/>
|
|
</vfs>
|
|
</libc>
|
|
</config>
|
|
</start> }
|
|
|
|
set boot_modules {
|
|
ram_fs
|
|
ltris
|
|
libc.lib.so
|
|
posix.lib.so
|
|
libm.lib.so
|
|
pthread.lib.so
|
|
sdl_mixer.lib.so
|
|
sdl.lib.so
|
|
stdcxx.lib.so
|
|
zlib.lib.so
|
|
ltris_data.tar
|
|
}
|
|
|
|
source ${genode_dir}/repos/world/run/framebuffer_app.inc
|